標題:
基本輸入輸出
[打印本頁]
作者:
陳品肇
時間:
2018-4-9 21:39
標題:
基本輸入輸出
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳柏霖
時間:
2018-4-14 17:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int w;
cout<<"w=";
cin>>w;
cout<<"w="<<w<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季庭
時間:
2018-4-14 17:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入抹個咚咚" ;
cin>>x ;
cout<<"你輸出的是這個:"<<x<<endl;
system ("pause");
return 0 ;
}
複製代碼
作者:
譚詩澐
時間:
2018-4-14 17:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"輸入的x";
cin>>x;
cout<<"輸出的x="<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡依宸
時間:
2018-4-14 17:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入號碼:"<<endl;
cin>>x;
cout<<"輸入碼是:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王旋兆
時間:
2018-4-14 17:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"a=";
cin>>a;
cout<<"a"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳杏宜
時間:
2018-4-14 17:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"x=";
cin>>x;
cout<<"我剛輸入的是:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴安利
時間:
2018-6-2 13:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x = 5;
cout<<"請輸入一個值:";
cin>>x;
cout<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴偉宸
時間:
2018-6-2 13:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個數"<<endl;
cin>>a;
cout<<"你剛剛輸入的數是:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴唯陞
時間:
2018-6-2 13:30
本帖最後由 陳品肇 於 2018-6-2 13:33 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cin>>x;
cout<<x<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2