- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main(){
- int score;
- cout<<"請輸入你的成績:";
- cin>>score;
- //判斷成績
- switch(score){
- case 90 ... 100:
- cout<<"優等"<<endl;
- break;
- case 89 ... 80:
- cout<<"甲等"<<endl;
- break;
- case 79 ... 70:
- cout<<"乙等"<<endl;
- break;
- case 69 ... 60:
- cout<<"丙等"<<endl;
- break;
- case 0 ... 59:
- cout<<"不及格"<<endl;
- break;
- //else
- default:
- cout<<"你媽的"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 好簡單 |