標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2019-8-9 20:00
標題:
if...else if...else 判斷式
關係運算
== 等於
< 小於
> 大於
<= 小於或等於
>= 大於或等於
!= 不等於
邏輯運算
&& and
|| or
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score; //變數名稱與要做的事有一定程度的相關
re:
cout<<"請輸入你的成績: ";
cin>>score;
if(score==100) //在判斷兩邊的值是否相等,要用雙等號
cout<<"哇!滿分!"<<endl;
else if(score<100 && score>=60)
cout<<"恭喜你及格了,給你糖吃!"<<endl;
else if(score<60 && score>0)
cout<<"不及格!打屁股!"<<endl;
else if(score==0)
cout<<"零分?斬!"<<endl;
else
cout<<"輸入錯誤!斬!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
楊佑諺
時間:
2019-8-9 20:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
re:
cout<<"輸入成績: ";
cin>>score;
if(score==100)
cout<<"哇,你是不是作弊"<<endl;
else if(score>=60 && score<100)
cout<<"恭喜及格"<<endl;
else if(score>0 && score<60)
cout<<"不及格,斬"<<endl;
else if(score==0)
cout<<"鴨蛋,斬"<<endl;
else
cout<<"輸入錯誤,斬"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2019-8-9 20:26
本帖最後由 林政瑜 於 2019-8-9 20:45 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
a:
int s;
cout<<"考幾分啦";
cin>>s;
if(s>60 && s<100)
cout<<"再騙啊"<<endl;
else if (s<60 && s<0)
cout<<"好誠實啊"<<endl;
else if (s==100)
cout<<"憑你也能考100"<<endl;
else if (s==0)
cout<<"考得不錯"<<endl;
else
cout<<"錯誤"<<endl;
goto a;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2019-8-9 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
re:
cout<<"報上成績來: ";
cin>>score;
if(score==100)
cout<<"滿分!"<<endl;
else if(score<100 && score>=60)
cout<<"及格!免你一死!"<<endl;
else if(score<=60 && score>=0)
cout<<"不及格,斬!"<<endl;
else if(score==0)
cout<<"零分,斬!"<<endl;
else
cout<<"輸入錯誤,斬!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-8-9 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
re:
cout<<"請輸入你的成績: ";
cin>>score;
if(score==100)
cout<<"哇!滿分!"<<endl;
else if(score<100 && score>=60)
cout<<"恭喜你及格了!"<<endl;
else if(score<60 && score>0)
cout<<"不及格,再接再厲!"<<endl;
else if(score==0)
cout<<"鴨蛋!斬!"<<endl;
else
cout<<"輸入錯誤!斬!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
施褕均
時間:
2019-8-9 20:27
#include<cstdlib>
using namespace std;
int main()
{
int score;
i:
cout<<"請輸入你的成績:";
cin>>score;
if (score==100)
cout<<"太棒了!"<<endl;
else if (score>=60 && score<100)
cout<<"及格了!"<<endl;
else if (score>0 && score<60)
cout<<"不及格!"<<endl;
else if (score==0)
cout<<"鴨蛋?"<<endl;
else
cout<<"輸入錯誤!"<<endl;
goto i;
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2019-8-9 20:28
本帖最後由 黃宥華 於 2019-8-10 23:30 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
banana:
cout<<"報上你的分數:";
cin>>score;
if(score==100)
cout<<"太神了"<<endl;
else if(score>=60 && score<100)
cout<<"恭喜及格"<<endl;
else if(score>0 && score<60)
cout<<"不及格,打屁屁"<<endl;
else if(score==0)
cout<<"鴨蛋?斬"<<endl;
else
cout<<"騙人"<<endl;
goto banana;
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2019-8-9 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s;
re:
cout<<"報上你的成績: ";
cin>>s;
if(s==100)
cout<<"哇!滿分!"<<endl;
else if(s<100 && s>60)
cout<<"恭喜你及格了!"<<endl;
else if(s<60 && s>00)
cout<<"不及格!"<<endl;
else if(s==0)
cout<<"零分!"<<endl;
else
cout<<"輸入錯誤!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2019-8-9 20:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float s;
lll:
cout<<"輸入你的成績";
cin>>s;
if(s==100)
cout<<"棒棒";
else if (s<100 && s>=60)
cout<<"不錯";
else if (s<60 && s>0)
cout<<"沒救";
else
cout<<"不要亂按==";
goto lll;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2019-8-9 20:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
re:
cout<<"請輸入您成績: ";
cin>>x;
if(x==100)
{
cout<<"滿分!真厲害!"<<endl;
}
else if(x>=60 && x<100)
{
cout<<"恭喜你及格了!"<<endl;
}
else if(x<60 && x>0)
{
cout<<"不及格,再接再厲。"<<endl;
}
else if(x==0)
{
cout<<"零分?斬!"<<endl;
}
else
{
cout<<"輸入錯誤!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2019-8-9 20:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
LOVE:
cout<<"請輸入你的成績: ";
cin>>score;
if(score==100)
cout<<"好厲害啊!!"<<endl;
else if(score<100 && score>60)
cout<<"厲害!"<<endl;
else if(score<60 && score>0)
cout<<"不及格!來人!斬!"<<endl;
else if(score==0)
cout<<"零分?來人!斬!"<<endl;
else
cout<<"輸入錯誤!來人!斬!"<<endl;
goto LOVE;
system("pause");
return 0;
}
複製代碼
作者:
余有晉
時間:
2019-8-9 20:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
re:
cout<<"請輸入你的成績: ";
cin>>score;
if(score==100)
cout<<"哇!滿分!好棒棒"<<endl;
else if(score<100 && score>=90)
cout<<"恭喜你及格了,給你買玩具!"<<endl;
else if(score<90 && score>0)
cout<<"不及格!斬!"<<endl;
else if(score==0)
cout<<"零分?你給我在外面脫褲子,露出你的大象,在外面跳大象舞!"<<endl;
else
cout<<"輸入錯誤?斬!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2