標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2016-7-11 10:11
標題:
if...else if...else 判斷式
本帖最後由 tonyh 於 2016-7-11 10:17 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x: ";
cin>>x;
cout<<"請輸入y: ";
cin>>y;
if(x>y)
{
cout<<"x>y"<<endl;
}else if(x<y)
{
cout<<"x<y"<<endl;
}else
{
cout<<"x=y"<<endl;
}
system("pause"); //系統("暫停")
return 0;
}
複製代碼
作者:
王宏益
時間:
2016-7-11 10:25
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x:";
cin>>x;
cout<<"請輸入y:";
cin>>y;
if(x>y)
{
cout<<"x>y"<<endl;
}
else if(x<y)
{
cout<<"x<y"<<endl;
}
else(x=y)
{
cout<<"x=y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
譚暐霖
時間:
2016-7-11 10:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x"<<endl;
cin>>x;
cout<<"請輸入y"<<endl;
cin>>x;
if(x>y)
{
cout<<"x>y"<<endl;
}else if(x<y)
{
cout<<"x<y"<<endl;
}else
{
cout<<"x=y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳柏宏
時間:
2016-7-11 10:28
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x:";
cin>>x;
cout<<"請輸入y:";
cin>>y;
if(x>y)
{
cout<<"x>y"<<endl;
}
else if(x<y)
{
cout<<"x<y"<<endl;
}
else(x=y)
{
cout<<"x=y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蕭澧邦
時間:
2016-7-11 10:30
本帖最後由 蕭澧邦 於 2016-7-11 10:34 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout << "請輸入變數1的值:";
cin >> a;
cout << "請輸入變數2的值:";
cin >> b;
cout << "1號變數的值為:" << a << endl;
cout << "2號變數的值為:" << b << endl;
if (a > b)
{
cout << "1號變數 大於 2號變數" << endl;
}
else if (a < b)
{
cout << "1號變數 小於 2號變數" << endl;
}
else
{
cout << "1號變數 等於 2號變數" << endl;
}
system("pause");
return 0 ;
}
複製代碼
作者:
陳亭丞
時間:
2016-7-11 10:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if (a>b)
{
cout<<"a大於b"<<endl;
}
else if (a<b)
{
cout<<"a小於b"<<endl;
}
else
{
cout<<"a等於b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張宸珉
時間:
2016-7-11 10:34
#include<iostream>
#include<cstdlib>
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;
if(x<y)
{
cout<<"x大於y"<<endl;
}
else if(x<y)
{
cout<<"x小於y"<<endl;
}
else
{
cout<<"x等於y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
顏詩芸
時間:
2016-7-11 10:41
#include<iostream>
#include<cstdlib>
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;
if(x>y)
{
cout<<"x大於y"<<endl;
}
else if(x>y)
{
cout<<"x小於y"<<endl;
}
else
{
cout<<"x等於y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳曜丞
時間:
2016-7-11 10:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if(a>b)
{
cout<<"a 大於 b"<<endl;
}
else if(a<b)
{
cout<<"a 小於 b"<<endl;
}
else
{
cout<<"a 等於 b"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2