標題:
if...else if...else 判斷式
[打印本頁]
作者:
蔡昀儒
時間:
2019-7-30 10:06
標題:
if...else if...else 判斷式
[attach]6900[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b;
cout<<"請輸入a: ";
cin>>a;
cout<<"請輸入b: ";
cin>>b;
if(a>b)
{
cout<<"a>b"<<endl;
}else if(a<b)
{
cout<<"a<b"<<endl;
}else
{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張博評
時間:
2019-7-30 10:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請告訴我a是什麼:";
cin>>a;
cout<<"請告訴我b是什麼:";
cin>>b;
if(a>b)
{
cout<<"a比b大"<<endl;
}
else if (a<b)
{
cout<<"a比b小"<<endl;
}
else
{
cout<<"a跟b一樣大"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
薛博仁
時間:
2019-7-30 10:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
if(a>b){
cout<<"a大於b"<<endl;
}
else if(a<b){
cout<<"a小於b"<<endl;
}
else
{
cout<<"a等於b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
龔品誠
時間:
2019-7-30 10:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請告訴我a是什麼:";
cin>>a;
cout<<"請告訴我b是什麼:";
cin>>b;
if (a>b)
{
cout<<"a比較大"<<endl;
}
else if (a<b)
{
cout<<"a比較小"<<endl;
}
else
{
cout<<"ab一樣大"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃鋐粟
時間:
2019-7-30 10:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值:";
cin>>y;
if(y>x)
{
cout<<"y比x大"<<endl;
}
else if(x>y)
{
cout<<"x比y大"<<endl;
}
else
{
cout<<"x和y一樣大"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
立晟
時間:
2019-7-30 10:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請告訴我a是什麼:";
cin>>a;
cout<<"請告訴我b是什麼:";
cin>>b;
if (a>b)
{
cout<<"a比較大"<<endl;
}
else if(a<b)
{
cout<<"b比較大"<<endl;
}
else
{
cout<<"a和b都一樣"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳柏臻
時間:
2019-7-30 10:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請告訴我a 是什麼:";
cin>>a;
cout<<"請告訴我b是什麼:";
cin>>b;
if(a>b)
{
cout<<"a比較大 "<<endl;
}
else if (a<b)
{cout<<"a比較小"<<endl;}
else
{cout<<"a和b一樣大"<<endl;}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2