標題:
if...else if...else 判斷式
[打印本頁]
作者:
許婷芳
時間:
2019-8-9 17:44
標題:
if...else if...else 判斷式
[attach]6946[/attach]
[attach]6948[/attach]
-
[attach]6945[/attach]
#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:19
#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:22
本帖最後由 謝以愛 於 2019-8-9 20:55 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績:"<<endl;
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:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入你的考試成績,決定你的身分"<<endl;
cin>>a;
if(a<=59&&a>0)
cout<<"你是棒棒der村民!"<<endl;
else if(a<=84&&a>=60)
cout<<"你是神準der預言家!"<<endl;
else if(a<=100&&a>=85)
cout<<"你是正義der女巫!"<<endl;
else if(a>100&&a<500||a<0)
cout<<"你是超爛der村民,你被殺了!!!"<<endl;
else if(a>=500)
cout<<"哈哈笑你!你是狼人,被豬殺了!!!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪承廷
時間:
2019-8-9 20:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
re:
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:37
#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:44
#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<=59 && score>=1)
cout<<"不及格,打屁股"<<endl;
else if (score=0)
cout<<"零分斬"<<endl;
else if (score<0)
cout<<"負數斬"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
廖文綺
時間:
2019-8-9 20:46
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2