標題:
五則運算(2)+輸入數字
[打印本頁]
作者:
張翼安
時間:
2015-9-12 01:04
標題:
五則運算(2)+輸入數字
#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;
}
複製代碼
作者:
張健勳
時間:
2015-9-19 11:51
#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;
}
複製代碼
作者:
任立宇
時間:
2015-9-19 12: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;
}
複製代碼
作者:
吳承勳
時間:
2015-9-30 15:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int 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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2