標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2017-9-27 16:53
標題:
if...else if...else 判斷式
本帖最後由 tonyh 於 2017-9-27 17:55 編輯
#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;
}
複製代碼
作者:
蒙鎧柔
時間:
2017-9-27 17:31
本帖最後由 蒙鎧柔 於 2017-9-27 17:59 編輯
#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;
}
複製代碼
作者:
黃宇綸
時間:
2017-9-27 17:44
#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;
}
複製代碼
作者:
李沛昂
時間:
2017-9-27 17:48
本帖最後由 李沛昂 於 2017-9-27 18:00 編輯
#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;
}
複製代碼
作者:
黃宇瑄
時間:
2017-9-27 17:48
本帖最後由 黃宇瑄 於 2017-9-27 18:00 編輯
#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;
}
複製代碼
作者:
黃宇綸
時間:
2017-9-27 18:00
#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;
}
複製代碼
回復
3#
黃宇綸
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2