標題:
[隨堂測驗] 基本輸入輸出
[打印本頁]
作者:
蔡昀儒
時間:
2019-8-22 15:52
標題:
[隨堂測驗] 基本輸入輸出
本帖最後由 蔡昀儒 於 2019-8-23 16:01 編輯
實作如下之執行畫面:
[attach]6988[/attach]
作者:
劉芊函
時間:
2019-8-23 09:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
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;
system("pause");
return 0;
}
作者:
高湘庭
時間:
2019-8-23 09:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
cin>>y;
cout<<"你輸入的數字是"<<x<<endl;
cout<<"你輸入的數字是"<<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;
cout<<"x+y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邱琦富
時間:
2019-8-23 09:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
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;
system("pause");
return 0;
}
複製代碼
作者:
古紹辰
時間:
2019-8-23 09:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
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;
system("pause");
return 0;
複製代碼
作者:
張書睿
時間:
2019-8-23 09:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入一個整數x";
cin>>x;
cout<<"請輸入一個整數y";
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;
system("pause");
return 0 ;
}
複製代碼
作者:
李泓寬
時間:
2019-8-23 09:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入一個整數x:";
cin>>x;
cout<<"請輸入一個整數y";
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;
system("pause");
return 0;
}
複製代碼
作者:
周瑋杰
時間:
2019-8-23 09:42
#include<cstdlib>
using namespace std;
int main()
{
int x, y;
cout<<"請輸入一整數x: " ;
cin>>x;
cout<<"請輸入一整數y";
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;
system("pause");
return 0 ;
}
複製代碼
作者:
黃祈瑋
時間:
2019-8-23 10:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
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;
system("pause");
return 0;
複製代碼
作者:
周孫印
時間:
2019-8-23 11:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
cin>>y;
cout<<"你輸入的數字是"<<x<<endl;
cout<<"你輸入的數字是"<<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;
cout<<"x+y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2