標題:
基本輸入輸出 (一)
[打印本頁]
作者:
tonyh
時間:
2016-7-9 11:23
標題:
基本輸入輸出 (一)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
譚暐霖
時間:
2016-7-9 11:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李易宸
時間:
2016-7-9 11:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入整數: ";
cin>>a;
cout<<"你剛輸入的數字為: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張宸珉
時間:
2016-7-9 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數:";
cin>>a;
cout<<"你剛輸入的數字是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳亭丞
時間:
2016-7-9 11:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//基本的輸入輸出
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳星霖
時間:
2016-7-9 11:47
#include<iosteam>
#include<cstdlib>
using namespace std;
int main()
{
//基本的輸入與輸出
int a;
cin>> a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return0;
}
複製代碼
作者:
王宏益
時間:
2016-7-9 11:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入一整數: ";
cin>>x;
cout<<"你剛輸入的數字是: "<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
韋明昌
時間:
2016-7-9 11:48
[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]
作者:
黃安立
時間:
2016-7-9 11:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a; //int ---> integer 整數
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數字是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
顏詩芸
時間:
2016-7-9 11:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//基本的輸入與輸出
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2