返回列表 發帖

switch 判斷式

利用 switch 判斷式, 設計一成績分級程式, 分級方式如下:
80分~100分  甲等
70分~79分    乙等
60分~69分    丙等
0分~59分      不及格
不在以上範圍  輸入錯誤

[使用者介面如下]
請輸入你的成績: 77
乙等!
請輸入你的成績: 101
輸入錯誤!
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入你的成績: ";
  8.     cin>>score;
  9.     switch(score)
  10.     {
  11.         case 80 ... 100:
  12.             cout<<"甲等"<<endl;
  13.             break;
  14.         case 70 ... 79:
  15.             cout<<"乙等"<<endl;
  16.             break;
  17.         case 60 ... 69:
  18.             cout<<"丙等"<<endl;
  19.             break;
  20.         case 0 ... 59:     
  21.             cout<<"不及格"<<endl;
  22.             break;
  23.         default:
  24.             cout<<"輸入錯誤"<<endl;      
  25.     }  
  26.     system("pause");
  27.     return 0;   
  28. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int score;
  7.         cout<<"Please enter your age: ";
  8.         cin>>score;
  9.         switch(score)
  10. {
  11.         case 0 ... 3:
  12.     cout<<"Free entry!"<<endl;
  13.         break;
  14.         case 4 ... 12:
  15.         cout<<"Half-ticket 50$"<<endl;       
  16.         break;
  17.         case 13 ... 64:
  18.         cout<<"Full ticket 100$"<<endl;
  19.         break;
  20.         case 65 ... 100:
  21.         cout<<"elderly ticket 70$"<<endl;
  22.         break;
  23.         default:
  24.         cout<<"Your not human and we only accept humans here sorry!"<<endl;       
  25. }               
  26.         system("pause");
  27.         return 0;
  28. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"plese enter your score: ";
  8.     cin>>score;
  9.     switch(score)
  10. {
  11.     case 80 ... 100:
  12.       cout<<"A+-A"<<endl;
  13.         break;
  14.     case 70 ... 79:
  15.       cout<<"B+-B"<<endl;
  16.       break;
  17.     case 60 ... 69:
  18.       cout<<"C+-C"<<endl;
  19.       break;
  20.     case 0 ... 59:
  21.       cout<<"D-F"<<endl;
  22.         break;
  23.    default:
  24.         cout<<"Incorrect"<<endl;
  25. }
  26.     system("pause");
  27.     return 0;
  28.    
  29.       
  30. }
複製代碼

TOP

本帖最後由 古蕾娜 於 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

返回列表