標題:
[隨堂測驗] 基本輸入輸出 (二)
[打印本頁]
作者:
陳品肇
時間:
2019-1-28 12:45
標題:
[隨堂測驗] 基本輸入輸出 (二)
本帖最後由 陳品肇 於 2019-1-28 15:30 編輯
試實作如下之執行畫面:
[attach]5824[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a ,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a+b="<<a+b<<endl;
cout<<"a-b="<<a-b<<endl;
cout<<"a*b="<<a*b<<endl;
cout<<"a/b="<<a/b<<endl;
cout<<"a%b="<<a%b<<endl; //取餘數
system("pause");
return 0;
}
複製代碼
作者:
洪藝瑄
時間:
2019-1-28 15:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a ,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a+b="<<a+b<<endl;
cout<<"a-b="<<a-b<<endl;
cout<<"a*b="<<a*b<<endl;
cout<<"a/b="<<a/b<<endl;
cout<<"a%b="<<a%b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝仲恩
時間:
2019-1-28 15:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"輸入a的值:";
cin>>a;
cout<<"輸入b的值:";
cin>>b;
cout<<"a+b="<<a+b<<endl;
cout<<"a-b="<<a-b<<endl;
cout<<"a*b="<<a*b<<endl;
cout<<"a/b="<<a/b<<endl;
cout<<"a%b="<<a%b<<endl;
system("pause");
return 0;
複製代碼
作者:
李易展
時間:
2019-1-28 15:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a+b="<<a+b<<endl;
cout<<"a-b="<<a-b<<endl;
cout<<"a*b="<<a*b<<endl;
cout<<"a/b="<<a/b<<endl;
cout<<"a%b="<<a%b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
龔家誼
時間:
2019-1-28 15:35
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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-1-28 15:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
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-1-28 15:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a ,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a+b="<<a+b<<endl;
cout<<"a-b="<<a-b<<endl;
cout<<"a*b="<<a*b<<endl;
cout<<"a/b="<<a/b<<endl;
cout<<"a%b="<<a%b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孔令安
時間:
2019-1-28 15:36
#include<iostream> //
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"";
cin>>a;
cout<<"";
cin>>b;
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");
return0;
}
複製代碼
作者:
傅永賢
時間:
2019-1-28 15:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入a:";
cin>>x;
cout<<"請輸入b:";
cin>>y;
cout<<"x+y="<<x+y;
cout<<"x-y="<<x-y;
cout<<"x*y="<<x*y;
cout<<"x/y="<<x/y;
cout<<"x%y="<<x%y;
system("pause");
return 0;
}
複製代碼
作者:
張正宜
時間:
2019-1-28 15:40
#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-1-28 15:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a ,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a+b="<<a+b<<endl;
cout<<"a-b="<<a-b<<endl;
cout<<"a*b="<<a*b<<endl;
cout<<"a/b="<<a/b<<endl;
cout<<"a%b="<<a%b<<endl; //取餘數
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2