標題:
基本輸入輸出 (一)
[打印本頁]
作者:
tonyh
時間:
2017-2-7 10:23
標題:
基本輸入輸出 (一)
本帖最後由 tonyh 於 2017-2-7 10:41 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一整數: ";
cin>>a;
cout<<"你剛輸入的數為 "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李竑毅
時間:
2017-2-7 10:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=10,y=10;
cout<<"請輸入X"<<endl;
cin>>x;
cout<<"請輸入Y"<<endl;
cin>>y;
cout<<"X+Y="<<x+y<<endl;
cout<<"X-Y="<<x-y<<endl;
cout<<"X*Y="<<x*y<<endl;
cout<<"X/Y="<<x/y<<endl;
cout<<"X%Y="<<x%y<<endl;
if(x>y)
{
cout<<"X>Y"<<endl;
}
else if(x<y)
{
cout<<"X<Y"<<endl;
}
if(x=y)
{
cout<<"X=Y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
高品溫
時間:
2017-2-7 10:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"輸入一個整數字:";
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2017-2-7 10:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"寧輸入的是數字是"<<a<<endl
system("pause");
return 0;
}
複製代碼
作者:
周佳慶
時間:
2017-2-7 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高睿辰
時間:
2017-2-7 10:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin>>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0
}
複製代碼
作者:
柯柏崙
時間:
2017-2-7 10:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cin >>a;
cout<<"您輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2