標題:
if...else if...else 判斷式
[打印本頁]
作者:
蔡昀儒
時間:
2019-8-23 10:36
標題:
if...else if...else 判斷式
本帖最後由 蔡昀儒 於 2019-8-23 16:02 編輯
[attach]6990[/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-8-23 10:41
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;
}
複製代碼
作者:
周孫印
時間:
2019-8-23 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<<"a>b"<<endl;
}else if(a<b)
{
cout<<"a<b"<<endl;
}else
{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
高興
時間:
2019-8-23 10:42
#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-8-23 10:43
#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-8-23 10:47
#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較高";}
else if(b>a)
{cout<<"b較高" ;}
else
{cout<<"ab一樣";}
system("pause");
return 0;
}
int x, y;
複製代碼
作者:
黃祈瑋
時間:
2019-8-23 10: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;
}
複製代碼
作者:
劉芊函
時間:
2019-8-23 10:50
#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的成績比較高";}
else if (b>a)
{cout<<"b的成績比較高";}
else
{cout<<"ab成績一樣高";}
system("pause");
return 0;}
複製代碼
作者:
蕭浚宇
時間:
2019-8-23 11:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入a的成績";
cin>>a;
cout<<"請輸入b的成績";
cin>>b;
if(a==100)
{cout<<"滿分";
}
else if (b=60)
{cout<<"及格";}
else{cout<<"不及格";}
system("pause");
return 0;
}
複製代碼
作者:
古紹辰
時間:
2019-8-23 11:06
#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大";}
else if (a<b)
{cout<<"a比b大";}
else
{cout<<"一樣大";}
system("pause");
return 0;
}
複製代碼
作者:
李穎俊
時間:
2019-8-23 11:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入a的分數"<<endl;
cin>>a;
cout<<"請輸入b的分數"<<endl;
cin>>b;
if (a>b)
{
cout<<"a比較高分"<<endl;
}
else if (a<b)
{
cout<<"a比較低分"<<endl;
}
else
{
cout<<"一樣低分"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
高湘庭
時間:
2019-8-23 11:09
#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你害我心碎了";}
else if (b>a)
{cout<<"b你真是.....超強的";}
else
{cout<<"ab你們都一樣";}
system("pause");
return 0;
}
複製代碼
作者:
張書睿
時間:
2019-8-23 11:09
[code]#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的成績比較高">>
elsa if (b>a)
cout<<"b的成績比較高">>
else
{
system("pause");
return 0 ;
}
複製代碼
[/code]
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2