標題:
基本輸入輸出 (一)
[打印本頁]
作者:
tonyh
時間:
2016-2-2 14:35
標題:
基本輸入輸出 (一)
本帖最後由 tonyh 於 2016-2-2 14:49 編輯
基本輸入輸出練習
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
方宥鈞
時間:
2016-2-2 14:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林昱岑
時間:
2016-2-2 14:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你剛剛輸入的是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃千瑜
時間:
2016-2-2 14:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你剛剛輸入的是:" <<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝以愛
時間:
2016-2-2 14:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數: ";
cin>>a;
cout<<"你剛剛輸入的是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳建錡
時間:
2016-2-2 15:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數";
cin>>a;
cout<<"你剛剛輸入的是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫石青
時間:
2016-2-2 15:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數: ";
cin>>a;
cout<<"您剛輸入的是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓廷
時間:
2016-2-2 15:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"你剛剛輸入的是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓瑜
時間:
2016-2-2 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int x;
cout<<"PLEASE SET A NUMBER:";
cin>>x;
cout<<"THE NUMBER IS:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2