標題:
基本輸入輸出 (一)
[打印本頁]
作者:
陳品肇
時間:
2018-2-5 14:26
標題:
基本輸入輸出 (一)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許哲睿
時間:
2018-2-5 14:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin >> a;
cout<< "你輸入的數字是" <<a << endl;
system("pause");
return 0;
}
複製代碼
作者:
任書嫻
時間:
2018-2-5 14:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
連昱維
時間:
2018-2-5 14:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"老兄給個整數唄:";
cin>>x;
cout<<"老兄你給的整數是:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許芊寧
時間:
2018-2-5 14:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
董帝辰
時間:
2018-2-5 14:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉翃志
時間:
2018-2-5 14:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數字:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳鼎元
時間:
2018-2-5 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin >> a;
cout<< "你輸入的數字是" <<a << endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2