標題:
五則運算(二)
[打印本頁]
作者:
周政輝
時間:
2017-3-14 17:52
標題:
五則運算(二)
#include<iostream> // <-基本輸出輸入的函式庫 Input Output cin 輸入 cout 輸出
#include<cstdlib> //主要的函式庫 Library
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;
}
複製代碼
作者:
張閎鈞
時間:
2017-3-14 17:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m;int n;
cout<<"輸入m的值:\r\n";
cin>>m;
cout<<"輸入n的值:\r\n";
cin>>n;
cout<<"m+n="<<m+n<<endl;
cout<<"m-n="<<m-n<<endl;
cout<<"m*n="<<m*n<<endl;
cout<<"m/n="<<m/n<<endl;
cout<<"m%n="<<m%n<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2017-3-14 17:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x; int y;
cout<<"x"<<endl;
cin>>x;
cout<<"y"<<endl;
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;
}
複製代碼
作者:
顏羽彤
時間:
2017-3-14 17:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"兩數的五則運算"<<endl;
int x;
int y;
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;
}
複製代碼
作者:
張凱婷
時間:
2017-3-14 17:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m;int n;
cout<<"輸入m的值:\r\n";
cin>>m;
cout<<"輸入n的值:\r\n";
cin>>n;
cout<<"m+n="<<m+n<<endl;
cout<<"m-n="<<m-n<<endl;
cout<<"m*n="<<m*n<<endl;
cout<<"m/n="<<m/n<<endl;
cout<<"m%n="<<m%n<<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://seed.istak.org.tw/)
Powered by Discuz! 7.2