標題:
基本輸入輸出
[打印本頁]
作者:
鄭繼威
時間:
2022-7-23 00:47
標題:
基本輸入輸出
本帖最後由 鄭繼威 於 2022-7-23 00:48 編輯
cout 輸出<-------->cin 輸入
cout<<x; 輸出x
cin>>x; 輸入x
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-7-23 15:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"你輸入一整數:";
string a;
//取得使用者輸入
// cout<< 輸出
// cin>>輸入
cin>>a;
cout<<"你剛輸入的數字是:"<<a<<endl;
if(){
if{
for
}
}
system("pause");
return 0;
}
複製代碼
作者:
林雋喆
時間:
2022-7-23 15:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"你剛輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥霖
時間:
2022-7-23 15:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你剛輸入的數子是:" <<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃品禎
時間:
2022-7-23 15:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你剛剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
羅紹齊
時間:
2022-7-23 15:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"你剛輸入的數為:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宜儒
時間:
2022-7-23 15:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
cout<<"請輸入一整數:";
int a;
cin>>a;
cout<<"你剛剛輸入整數是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2022-7-23 15:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"輸入一個數:";
cin>>a;
cout<<"你輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾瑄羽
時間:
2022-7-23 15:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
複製代碼
作者:
羅暐傑
時間:
2022-7-23 15:09
#include <iostream>
#include <cstdlib>
using namespace std;
int main (){
int a;
cout<<"請您輸入一個整數: ";
cin>>a;
cout<<"你剛剛輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊芊琦
時間:
2022-7-23 15:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name;
int round = 0;
if(round!=1)
{
cout<<"請為您的人工不智慧機器人命名:";
cin>>name;
cout<<"您好,我是"<<name<<endl;
round = round +1;
}
system("pause");
return 0;
}
複製代碼
作者:
葉佳和
時間:
2022-7-23 15:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"歡迎使用屁孩名子生成器"<<endl;
cout<<"這是基本輸入輸出的魔改版"<<endl;
string a;
cout<<"請輸入你的名子: ";
cin>>a;
cout<<"你的屁孩名子是:X煞氣a\ "<<a<<"\ X"<<endl;
cout<<"我到底做了什麼鬼"<<endl;
system("pause");
return 0;
複製代碼
作者:
吳丞治
時間:
2022-7-23 15:22
[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
[/code]
作者:
王睿荻
時間:
2022-7-23 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你剛輸入的數子是:" <<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
盧禹丞
時間:
2022-7-23 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2022-7-27 14:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你剛輸入的數子是:" <<a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2