標題:
五則運算(五)
[打印本頁]
作者:
周政輝
時間:
2017-3-14 18:45
標題:
五則運算(五)
請加入限制 限制x與y的大小 不可以超過 2147483647
作者:
林峻安
時間:
2017-3-14 18:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x; int y;
cout<<"x"<<endl;
cin>>x;
cout<<"y"<<endl;
cin>>y;
if(x!=0&& y!=0)
{
cout<<"x與y的大小 不可以超過 2147483647"<<endl;
}
else{
cout<<"y的質不可為0"<<endl;
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 19:13
#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;
//正 正 = > 正
//正 負 = > 負
//負 正 = >負
//負 負 = > 正
// && and = > 兩者都要成立就回傳true
// || or = > 兩者只要其中一者成立就回傳true
// ! = > false
// 1 true 0 false
cout << (x>=2147483647)<< endl;
if(x>=2147483647 && y>=2147483647)
{
cout << "你輸入的值太大了! 請重新輸入~!" << endl;
}
else{
cout << "A";
}
system("pause");
return 0;
}
作者:
張閎鈞
時間:
2017-3-14 19:14
#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;
if
if(m!=0 && n!=0)
{
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;
}
else
{
cout<<"m與n值不能為0,重新輸入!!\r\n";
}
system("pause");
return 0;
}
作者:
顏羽彤
時間:
2017-3-14 19:15
#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;
if(x!=0&&x>2147483647 && y!=0 && y>2147483647)
{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;
}
else
{cout<< "請重新輸入!"<<endl;
system("pause");
return 0;
}
if(x>2147483647 && y>2147483647)
{cout<<"x與y值已超過計算範圍 請重新輸入!"<<endl;
}
else
{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;
}
}
複製代碼
作者:
張凱婷
時間:
2017-3-14 19:15
#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;
if
if(m!=0 && n!=0)
{
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;
}
else
{
cout<<"m與n值不能為0,重新輸入!!\r\n";
}
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2