標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2019-5-18 10:21
標題:
if...else if...else 判斷式
本帖最後由 tonyh 於 2019-5-18 11:40 編輯
關係運算
== 等於
< 小於
> 大於
<= 小於或等於
>= 大於或等於
!= 不等於
邏輯運算
&& 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-5-18 11:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
re:
cout<<"enter your score: ";
cin>>score;
if(score==100)
cout<<"A++,perfect!!!"<<endl;
else if(score>=60 && score<100)
cout<<"B++,nice!"<<endl;
else if(score>0 && score<60)
cout<<"C--,see me after class!!!!!!!"<<endl;
else
cout<<"lier!!! lier!!!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2019-5-18 11:54
#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;
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-5-18 12:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score==100)
cout<<"哇!滿分!"<<endl;
else if(score>0 && score<100)
cout<<"恭喜你及格了,給你糖吃!"<<endl;
else if(score>0 && score<60)
cout<<"不及格!打屁股!"<<endl;
else if(score==0)
cout<<"零分?斬!"<<endl;
else
cout<<"輸入錯誤!斬!"<<endl;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
郭哲維
時間:
2019-5-18 12:05
#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");
}
複製代碼
作者:
鄭羽捷
時間:
2019-5-18 12:05
#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>80)
cout<<"恭喜你及格了,帶你去買玩具!"<<endl;
else if(score<80 && score>0)
cout<<"不及格!打屁股!"<<endl;
else if(score==0)
cout<<"零分?斬!"<<endl;
else
cout<<"輸入錯誤!斬!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-5-19 12:16
#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;
}
複製代碼
作者:
駱顗安
時間:
2020-4-16 17:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入你的成績:";
cin>>a;
if(a==100)
cout<<"哇!滿分!"<<endl;
else if(a>=60&&a<100)
cout<<"恭喜及格了,給你糖吃"<<endl;
else if(a<60&&a>0)
cout<<"不及格!打屁股!"<<endl;
else if(a==0)
cout<<"零分?斬!"<<endl;
else
cout<<"輸入錯誤!斬!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2