標題:
五則運算 (三)
[打印本頁]
作者:
周政輝
時間:
2017-3-11 10:07
標題:
五則運算 (三)
利用and 和 or 搭配if條件判斷來將五則運算練習的更完整
#include<cstdlib>
#include<iostream> // I (Input)O (Output) 串流
using namespace std;
int main()
{
int x,y; //同時宣告x,y為int型別
//if 判斷式 如果.... 那就做什麼事 否則...就做甚麼事
// ! => false
cout << "請輸入X的值\r\n";
cin >> x;
cout << "請輸入y的值\r\n";
cin >> y;
// && => and 兩者的條件判斷都要為true的時候 才執行
// || => or 兩者的條件判斷只要一方為true 就會執行
if((x!=0) && (y!=0) )
{
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;
}
else{
cout << "請重新輸入\r\n";
}
system("pause");
return 0;
}
複製代碼
作者:
高品溫
時間:
2017-3-11 10:10
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int x,y;
cout<<"輸入x的值"<<endl;
cin>>x;
cout<<"輸入y的值"<<endl;
cin>>y;
if(!(x==0)&&!(y==0))
{
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;
}
else
{
cout<<"請重新輸入"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
莊旻叡
時間:
2017-3-11 10:10
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
cin>>y;
if((x!=0)&&(y!=0))
{
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;
}else
{
cout<<"請重新輸入"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
高睿辰
時間:
2017-3-11 10:14
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x的值"<<endl;
cin>>x;
cout<<"請輸入y的值"<<endl;
cin>>y;
if((x!=0)&&(y!=0))
{
cout<<"當x的質為:"<<x;cout<<"當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;
}
else
{
cout<<"請重新輸入"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
巫晉宇
時間:
2017-3-14 18:17
#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;
if(y==0)
{
cout<<"請重新輸入" <<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;
system("pause");
return 0; }
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2