返回列表 發帖
本帖最後由 鄭繼威 於 2022-6-13 19:38 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int score;
  7.         cout<<"你月考考幾分?:"<<endl;
  8.         cin>>score;
  9.         switch(score
  10.         {
  11.                 case 90 ...100:
  12.                         cout<<"優等"<<endl;
  13.                         break;
  14.                 case 89 ...80:
  15.                         cout<<"甲等"<<endl;
  16.                         break;
  17.                 case 79 ...70:
  18.                         cout<<"乙等"<<endl;
  19.                         break;
  20.                 case 69 ...60:
  21.                         cout<<"丙等"<<endl;
  22.                         break;
  23.                 case 59 ...0:
  24.                         cout<<"丁等"<<endl;
  25.                         break;
  26.                 default
  27.                         cout<<"你再亂講,我就打死你"<<endl;       
  28.         }
  29.         system("pause")
  30.         return 0;
  31. }
複製代碼
因為太簡單了所以先偷吃步了

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int score;
  7.         cout<<"你月考考幾分?:"<<endl;
  8.         cin>>score;
  9.         switch(score
  10.         {
  11.              case 90 ...100:
  12.                   cout<<"優等"<<endl;
  13.                   break;
  14.              case 89 ...80:
  15.                   cout<<"甲等"<<endl;
  16.                    break;
  17.              case 79 ...70:
  18.                   cout<<"乙等"<<endl;
  19.                   break;
  20.              case 69 ...60:
  21.                   cout<<"丙等"<<endl;
  22.                   break;
  23.              case 59 ...0:
  24.                   cout<<"丁等"<<endl;
  25.                   break;
  26.              default
  27.                 cout<<"你再亂講,我就打死你"<<endl;      
  28.         }
  29.         system("pause")
  30.         return 0;
  31. }
複製代碼

TOP

返回列表