返回列表 發帖
本帖最後由 古蕾娜 於 2018-7-11 16:29 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int score;
  7.     cout<<"please enter your score: ";
  8.     cin>>score;
  9.     switch(score)
  10.     {
  11.     case 80 ... 100:
  12.          cout<<"A"<<endl;
  13.     case 70 ... 79:
  14.          cout<<"B"<<endl;
  15.     case 60 ... 69:
  16.          cout<<"C"<<endl;
  17.     case 0 ... 59:
  18.          cout<<"D"<<endl;
  19.      default:
  20.            cout<<"you have entered wrong"<<endl;
  21.    }
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

TOP

返回列表