標題:
if...else if...else 判斷式
[打印本頁]
作者:
方浩葦
時間:
2024-6-1 09:19
標題:
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;
}
複製代碼
作者:
高湘庭
時間:
2024-6-1 15:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int x;
cout<<"請輸入你的成績";
cin>>x;
if(x==100)
cout<<"哇!滿分"<<endl;
else if(x<100&&x>60)
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;
作者:
劉奕劭
時間:
2024-6-1 15:28
#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;
}
作者:
李偈睿
時間:
2024-6-1 15:28
#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;
}
複製代碼
作者:
林少謙
時間:
2024-6-1 15:28
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績:";
cin>>score;
if (score==100)
cout<<"恭喜考100分~~"<<endl;
else if (score>=60&&score<100)
cout<<"恭喜及格!"<<endl;
else if (score<60&&score>0)
cout<<"不及格!"<<endl;
else if (score==0)
cout<<"考0分!"<<endl;
else
cout<<"重打!"<<endl;
goto re;
system("pause");
return 0;
}
作者:
洪榮辰
時間:
2024-6-1 15:29
#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