返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     int score;
  6.     cout<<"請輸入你的成績:";
  7.     cin>>score;
  8.     //判斷成績
  9.     switch(score){
  10.     case 90 ... 100:
  11.                 cout<<"優等"<<endl;  
  12.                 break;
  13.                 case 89 ... 80:
  14.                 cout<<"甲等"<<endl;  
  15.                 break;
  16.                  case 79 ... 70:
  17.                 cout<<"乙等"<<endl;  
  18.                 break;
  19.                 case 69 ... 60:
  20.                 cout<<"丙等"<<endl;  
  21.                 break;
  22.                 case 0 ... 59:
  23.                 cout<<"不及格"<<endl;  
  24.                 break;
  25.                 //else
  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 day;

  7. //case0~2  
  8.            // -> 0<=score<=2
  9.            case0...2:
  10.                  cout<<"有點少...加油!"<<endl;   
  11. //case3~4
  12.            // -> 3<=score<=4
  13.            case 3 ... 4:
  14.                 cout<<"還不錯,繼續努力!"<<endl;  
  15. //case0~2  
  16.            // -> 5<=score<=7
  17.            case 5...7:
  18.                 cout<<"健康寶寶代言人"<<endl;
  19. } system("pause");
  20.     return 0;   
  21. }
複製代碼

TOP

返回列表