標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2017-1-25 09:34
標題:
if...else if...else 判斷式
本帖最後由 tonyh 於 2017-1-25 10:07 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入a: ";
cin>>a;
cout<<"請輸入b: ";
cin>>b;
if(a==b)
{
cout<<"兩數相等!"<<endl;
}else if(a>b)
{
cout<<"a>b"<<endl;
}else
{
cout<<"a<b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳翊愷
時間:
2017-1-25 09:44
#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;
}
複製代碼
作者:
王子丹
時間:
2017-1-25 09:45
#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;
}
複製代碼
作者:
宋禹禛
時間:
2017-1-25 09:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"輸入a:";
cin>>a;
cout<<"輸入b:";
cin>>b;
if(a==b)
{
cout<<"兩數相等"<<endl;
}else if(a>b)
{
cout<<"a>b"<<endl;
}else
{
cout<<"a<b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
莊旻叡
時間:
2017-1-25 09:46
#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;
}
複製代碼
作者:
呂承霖
時間:
2017-1-25 09:48
#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;
}
複製代碼
作者:
黃珖瑋
時間:
2017-1-25 09:49
#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;
}
複製代碼
作者:
黃楷哲
時間:
2017-1-25 09:52
#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;
}
複製代碼
作者:
沈竑希
時間:
2017-1-25 09:53
#include<iostream>
#include<cstdlib>
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;
}
if(a>b)
{
cout<<"a > b" <<endl;
}
else if(a<b)
{
cout<<"a < b" <<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃子晏
時間:
2017-1-25 09:54
#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;
}
複製代碼
作者:
黃鼎家
時間:
2017-1-25 09:54
#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;
}
複製代碼
作者:
楊修禹
時間:
2017-1-25 09:55
#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;
}
複製代碼
作者:
余孟儒
時間:
2017-1-25 10:04
#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;
}
複製代碼
作者:
黃鼎家
時間:
2017-1-25 10:30
#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;
}
複製代碼
作者:
文柏涵
時間:
2017-1-25 10:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入a: ";
cin>>a;
cout<<"請輸入b: ";
cin>>b;
if(a==b)
{
cout<<"兩數相等!"<<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