標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2015-8-11 15:44
標題:
if...else if...else 判斷式
本帖最後由 tonyh 於 2015-8-11 16:11 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score==100) //條件判斷時 等號要兩個
cout<<"哇~太神了~滿分!"<<endl;
else if(score<100 && score>=60) // && and的意思
cout<<"恭喜你,及格了!"<<endl;
else if(score<60 && score>0)
cout<<"不及格,再加油!"<<endl;
else if(score==0)
cout<<"鴨蛋?斬!"<<endl;
else
cout<<"輸入錯誤.. 斬!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林禹彤
時間:
2015-8-11 16:11
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score==100)
{
cout<<"阿不就好棒棒!!!"<<endl;
}else if(score>=80 && score<100)
{
cout<<"恭喜你不用留校補考!!"<<endl;
}else if(score>=0 && score <80)
{
cout<<"準備補考到死吧!!!!哇哈哈哈;>"<<endl;
}else
{
cout<<"聽你在放屁!哪有這種成績?!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳品蓁
時間:
2015-8-11 16:14
本帖最後由 陳品蓁 於 2015-8-12 13:54 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score==100)
cout<<"恭喜你!太棒了!:"<<endl;
else if(score<100&&score>=60)
cout<<"還不錯,下次加油:"<<endl;
else if(score==0)
cout<<"太爛了,面壁思過:"<<endl;
else
cout<<"輸入錯誤!去罰站:"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
柳晟緯
時間:
2015-8-11 16:15
本帖最後由 柳晟緯 於 2015-8-12 13:54 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你,超優!"<<endl;
} if(score>=96)
{
cout<<"恭喜你,及格了!"<<endl;
} if(score>=60)
{
cout<<"不及格...加油!"<<endl;
} if(score<=60)
{
cout<<"超遜,斬!"<<endl;
} if(score<=20)
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-8-11 16:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
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;
system("pause");
return 0;
}
複製代碼
作者:
顏宇呈
時間:
2015-8-11 16:24
本帖最後由 顏宇呈 於 2015-8-12 14:00 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"輸入你的成績";
cin>>score;
if(score==100)
cout<<"好棒棒"<<endl;
else if(score<99 && score>=60)
cout<<"還不錯"<<endl;
else if(score<59 && score>=1)
cout<<"去死吧"<<endl;
else if(score==0)
cout<<"鴨蛋"<<endl;
else if(score<0)
cout<<"輸入無效"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
柳晟緯
時間:
2015-8-12 14:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if (score ==100)
cout<<"好棒棒"<<endl;
else if (score <=99&& score>=60)
cout<<"還不錯"<<endl;
else if (score <=60&& score>0)
cout<<"不及格,再加油!"<<endl;
else if (score==0)
cout<<"鴨蛋?斬!"<<endl;
else
cout<<"輸入錯誤.. 斬!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鍾帛融
時間:
2015-8-12 14:43
#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score==100)
cout<<"good!!!!!!!"<<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;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2