標題:
五則運算 (二)
[打印本頁]
作者:
tonyh
時間:
2012-8-7 09:58
標題:
五則運算 (二)
讓使用者自行輸入x與y的值
#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;
}
複製代碼
作者:
周旻賢
時間:
2012-8-7 09:58
#include<iostream>
using namespace std;
int main()
{
int x;
int 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;
}
複製代碼
作者:
許睿森
時間:
2012-8-7 09:58
#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;
cout<<"x*x*y="<<x*x*y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周煒翔
時間:
2012-8-7 09:58
#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;
}
複製代碼
作者:
蔡昀佑
時間:
2012-8-7 09:59
#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;
}
複製代碼
作者:
t2364705
時間:
2012-8-7 09:59
#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;
}
複製代碼
作者:
劉泳鱔
時間:
2012-8-7 10:01
#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;
}
複製代碼
作者:
劉嘉琳
時間:
2012-8-7 10:02
#include<iostream>
using namespace std;
int main()
{
int x;
int 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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2