標題:
五則運算(二)
[打印本頁]
作者:
周政輝
時間:
2017-3-11 09:08
標題:
五則運算(二)
透過使用者自行輸入數值 來計算簡單的五則運算
#include<cstdlib>
#include<iostream> // I (Input)O (Output) 串流
using namespace std;
int main()
{
int x,y; //同時宣告x,y為int型別
cout << "請輸入X的值\r\n";
cin >> x;
cout << "請輸入y的值\r\n";
cin >> y;
cout << "當x的值為:" <<x <<";當y的值為:" << 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;
}
複製代碼
作者:
莊旻叡
時間:
2017-3-11 09:12
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
cin>>y;
cout<<"x="<<x<<",y="<<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;
}
複製代碼
作者:
高品溫
時間:
2017-3-11 09:14
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int x,y;
cout<<"輸入x的值"<<endl;
cin>>x;
cout<<"輸入y的值"<<endl;
cin>>y;
cout<<"當x的值為:"<<x<<"當y的值為:"<<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;
}
複製代碼
作者:
高睿辰
時間:
2017-3-11 09:19
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的值"<<endl;
cin>>x;
cout<<"請輸入y的值"<<endl;
cin>>y;
cout<<"當x的質為:"<<x<< cout<<"當y的質為:"<<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;
複製代碼
作者:
巫晉宇
時間:
2017-3-14 18:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;int y;
cout<<"兩數的五則運算"<<endl;
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;
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2