標題:
五則運算 (二)
[打印本頁]
作者:
tonyh
時間:
2011-9-10 16:37
標題:
五則運算 (二)
試做一個可自行指定x值與y值的五則運算程式
作者:
劉漢文
時間:
2011-9-10 16:41
#include<iostream>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x的值:";
cin>>x;
cout<<endl;
cout<<"請輸入y的值:";
cin>>y;
cout<<"你剛輸入的值是"<<x<<"y為"<<y<<endl;
cout<<"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%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許逸瑋
時間:
2011-9-10 16:41
回復
2#
劉漢文
#include<iostream> //呼叫我要使用的工具
using namespace std; //將工具放在工具箱
int main() //主程式
{
int x;
int y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
cin>>y;
cout<<"x的值:"<<x<<endl;
cout<<"y的直:"<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-9-10 16:42
#include <iostream>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x值:";
cin>>x;
cout<<"請輸入y值:";
cin>>y;
cout<<endl;
cout<<"您輸入的值是:"<<x<<"y為:"<<y<<endl;
cout<<"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%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t3742238
時間:
2011-9-10 16:43
#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;
}
複製代碼
作者:
t8155745
時間:
2011-9-10 16:46
#include <iostream>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x值:";
cin>>x;
cout<<"請輸入y值:";
cin>>y;
cout<<"您剛輸入的x值是:"<<x<<endl;
cout<<"您剛輸入的y值是:"<<y<<endl;
cout<<"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%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-9-10 16:48
#include <iostream>
using namespace std;
int main()
{
int x;
int y;
cout<<"輸入x值:"<<endl;
cin>>x;
cout<<"輸入y值:"<<endl;
cin>>y;
cout<<"x值:"<<x<<endl;
cout<<"y值:"<<y<<endl;
cout<<"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%y="<<x%y<<endl;
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2