標題:
if...else if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2014-8-30 11:55
標題:
if...else if...else 判斷式
#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;
}
複製代碼
作者:
李大全
時間:
2014-8-30 12: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;
}
作者:
梁和雋
時間:
2014-8-30 12:01
#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;
}
複製代碼
作者:
謝瀞儀
時間:
2014-8-30 12:03
本帖最後由 謝瀞儀 於 2014-8-30 12:05 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s;
cout<<"輸入分數:"<<endl;
cin>>s;
if (s==100)
cout<<"哇!滿分!"<<endl;
else if (s>=70 && s<80)
cout<<"甘巴爹!加油!"<<endl;
else if (s>=80 && s<90)
cout<<"甘巴爹!!快90了!"<<endl;
else if (s>=90 && s<100)
cout<<"甘巴爹!甘巴爹!到100更好!"<<endl;
else if (s>=60 && s<70)
cout<<"恭喜你及格了!"<<endl;
else if (s>0 && s<60)
cout<<"不及格!請再努力!"<<endl;
else if (s==0)
cout<<"!?給本宮拖出去斬了!"<<endl;
else
cout<<"輸入錯誤?給本宮拖出去斬了!"<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2014-8-30 12:05
#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;
}
複製代碼
作者:
李知易
時間:
2014-8-31 12:22
#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<<"!@#$%^&*☆¢*去把數學抄100遍"<<endl;
else
cout<<"來人啊!拖出去斬了"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2