返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int score;
  7.    
  8.     re:
  9.     cout<<"請輸入你的成績";
  10.     cin>>score;
  11.     switch(score)
  12.     {
  13.       
  14.     case 80 ... 100:
  15.          cout<<"甲等"<<endl;
  16.          break;
  17.     case 70 ... 79:
  18.          cout<<"乙等"<<endl;
  19.          break;
  20.     case 60 ... 69:
  21.          cout<<"丙等"<<endl;
  22.          break;
  23.     case 0 ... 59:
  24.          cout<<"不及格"<<endl;
  25.          break;
  26.     default:
  27.          cout<<"輸入錯誤"<<endl;
  28.     }
  29.     system("pause");
  30.     goto re;
  31. }
複製代碼

TOP

返回列表