標題:
基本輸入輸出
[打印本頁]
作者:
陳品肇
時間:
2019-3-16 09:13
標題:
基本輸入輸出
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃傳耀
時間:
2019-3-16 10:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int cup;
cout<<"Please input a integer:";
cin>>cup;
cout<<"你輸入的數字是"<<cup<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝蓮金
時間:
2019-3-16 10:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"你輸入的值為:"<<a<<endl;
system("pause");
return 0 ;
}
複製代碼
作者:
洪子涵
時間:
2019-3-16 10:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入一個整數:";
cin>>x;
cout<<"您輸入的整數為:"<<x<<endl;
system("pause");
return 0 ;
}
複製代碼
作者:
李易展
時間:
2019-3-16 10:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int apple;
cout<<"請輸入一個整數:";
cin>> apple;
cout<<"剛剛輸入的數字是:"<<apple<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邱楷宸
時間:
2019-3-16 10:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個數並按enter:";
cin>>a;
cout<<"你打的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王建葦
時間:
2019-3-16 10:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入一個整數:";
cin>>x;
cout<<"2019/"<<"3/"<<"6"<<"(六)"<<"AM"<<"10:"<<"50"<<endl;
cout<<"您輸入的整數為:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪藜芸
時間:
2019-3-16 11:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個整數:";
cin>>a;
cout<<"您輸入的值為:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宇柏
時間:
2019-5-22 13:34
#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