標題:
if...else if...else 判斷式
[打印本頁]
作者:
陳品肇
時間:
2018-10-26 21:47
標題:
if...else if...else 判斷式
[attach]5113[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
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;
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2018-10-27 14:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int X;
cout<<"請輸入你的成績:";
cin>>X;
if(X==100)
{
cout<<"滿分通過"<<endl;
}
else if(X>=60 && X<99)
{
cout<<"及格"<<endl;
}
else if(X<60 && X>0)
{
cout<<"不及格"<<endl;
}
else
{
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2018-10-27 14:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
a:
int x;
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 a;
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2018-10-27 14:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
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<<"輸入錯誤(error)"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
章幼莛
時間:
2018-10-27 14:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
start:
cout<<"請輸入成績:";
cin>>a;
if(a==100)
{
cout<<"滿分!!!"<<endl;
}
else if(a<100 && a>=60)
{
cout<<"恭喜你及格了!!"<<endl;
}
else if(a>0 && a<60)
{
cout<<"不及格!"<<endl;
}
else if(a==0)
{
cout<<"零鴨蛋!"<<endl;
}
else
{
cout<<"輸入錯誤!"<<endl;
}
goto start;
system("pause");
return 0;
}
複製代碼
回復
1#
陳品肇
作者:
王瑞喻
時間:
2018-10-27 14:13
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int score;
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;
system("pause");
return 0;
}
複製代碼
作者:
周孫印
時間:
2018-10-27 14:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
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;
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2018-10-27 14:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
jeb:
int(score);
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 jeb;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2