標題:
switch 判斷式
[打印本頁]
作者:
張翼安
時間:
2015-10-16 23:37
標題:
switch 判斷式
本帖最後由 張翼安 於 2015-10-17 10:59 編輯
利用 switch 判斷式, 設計一成績分級程式, 分級方式如下:
80分~100分 甲等
70分~79分 乙等
60分~69分 丙等
0分~59分 不及格
不在以上範圍 輸入錯誤
[使用者介面如下]
請輸入你的成績: 77
乙等!
請輸入你的成績: 101
輸入錯誤!
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績: ";
cin>>score;
switch(score)
{
case 80 ... 100:
cout<<"甲等!"<<endl;
break;
case 70 ... 79:
cout<<"乙等!"<<endl;
break;
case 60 ... 69:
cout<<"丙等!"<<endl;
break;
case 0 ... 59:
cout<<"不及格!"<<endl;
break;
default:
cout<<"輸入錯誤!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-10-19 17:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
switch(score)
{
case 80 ... 100:
cout<<"甲等!不錯啦!給你糖吃!"<<endl;
break;
case 70 ... 79:
cout<<"乙等!還OK啦!"<<endl;
break;
case 60 ... 69:
cout<<"丙等!小心一點!!!"<<endl;
break;
case 0 ... 59:
cout<<"考什麼爛分數!!!不及格!!!"<<endl;
break;
default:
cout<<"輸入錯誤!!!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2015-10-27 17:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"輸入你的成績:";
cin>>score;
switch(score)
{
case 80 ... 100:
cout<<"甲等!"<<endl;
break;
case 70 ... 79:
cout<<"乙等!"<<endl;
break;
case 60 ... 69:
cout<<"丙等!"<<endl;
break;
case 0 ... 59:
cout<<"不及格!"<<endl;
break;
default:
cout<<"你是豬!";
}
goto re;
system("pause");
return 0;
}
作者:
吳承勳
時間:
2015-10-31 10:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績: ";
cin>>score;
switch(score)
{
case 80 ... 100:
cout << "甲等!" << endl;
break;
case 70 ... 79:
cout << "乙等!"<<endl;
break;
case 60 ... 69:
cout << "丙等!" << endl;
break;
case 0 ... 59:
cout << "不及格!" << endl;
break;
default:
cout << "輸入錯誤!" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-10-31 10:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績: ";
cin>>score;
switch(score)
{
case 80 ... 100:
cout << "甲等!" << endl;
break;
case 70 ... 79:
cout << "乙等!"<<endl;
break;
case 60 ... 69:
cout << "丙等!" << endl;
break;
case 0 ... 59:
cout << "不及格!" << endl;
break;
default:
cout << "輸入錯誤!" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-10-31 10:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入成績:"<<endl;
cin>> x;
switch(x)
{
case 80...100:
cout<<"甲等"<<endl;
break;
case 70...79:
cout<<"乙等"<<endl;
break;
case 60...69:
cout<<"丙等"<<endl;
break;
case 0...59:
cout<<"甲等"<<endl;
break;
default:
cout<<"不誠實"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2