返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.    
  7.     int score   ;

  8.     cout<<"請輸入你的成績 ";
  9.     cin>>score;
  10.     switch(score)
  11.     {
  12.     case 90 ... 100:
  13.          cout<<"優等"<<endl;
  14.          break;
  15.     case 80 ... 89:
  16.          cout<<"甲等"<<endl;
  17.          break;
  18.    
  19.     case 70 ... 79:
  20.          cout<<"乙等"<<endl;
  21.          break;
  22.     case 60 ... 69:
  23.          cout<<"丙等"<<endl;
  24.     case 0 ... 59:
  25.          cout<<"不及格"<<endl;
  26.          break;
  27.     default:
  28.          cout<<"輸入錯誤"<<endl;   
  29.                      
  30.     }
  31.     system("pause");
  32.     return 0;
  33. }
複製代碼

TOP

返回列表