返回列表 發帖

switch 判斷式

本帖最後由 tonyh 於 2019-8-19 22:08 編輯

利用 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.     re:
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>score;
  10.     switch(score)
  11.     {
  12.         case 80 ... 100:
  13.             cout<<"甲等"<<endl;
  14.             break;
  15.         case 70 ... 79:
  16.             cout<<"乙等"<<endl;
  17.             break;
  18.         case 60 ... 69:
  19.             cout<<"丙等"<<endl;
  20.             break;
  21.         case 0 ... 59:     
  22.             cout<<"不及格"<<endl;
  23.             break;
  24.         default:
  25.             cout<<"輸入錯誤"<<endl;      
  26.     }
  27.     cout<<endl;
  28.     goto re;
  29.     system("pause");
  30.     return 0;   
  31. }
複製代碼

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int score;
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>score;
  10.     switch(score)
  11.     {
  12.          case 80 ... 100:
  13.              cout<<"A++"<<endl;
  14.          break;
  15.          
  16.          case 70 ... 79:
  17.              cout<<"B++"<<endl;
  18.          break;
  19.          case 60 ... 69:
  20.              cout<<"C++"<<endl;
  21.          break;
  22.          case 0 ... 59:
  23.              cout<<"F--"<<endl;
  24.          break;
  25.          default:
  26.              cout<<"別鬧了"<<endl;                  
  27.     }
  28.     goto re;
  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.     re:
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>score;
  10.     switch(score)
  11.     {
  12.         case 80 ... 100:
  13.              cout<<"甲等"<<endl;
  14.              break;
  15.         case 70 ... 79:
  16.              cout<<"乙等"<<endl;
  17.              break;
  18.         case 60 ... 69:
  19.              cout<<"丙等"<<endl;
  20.              break;
  21.         case 0 ... 59:
  22.              cout<<"不及格"<<endl;
  23.              break;
  24.         default:
  25.              cout<<"請勿胡亂輸入"<<endl;
  26.     }
  27.         cout<<endl;
  28.     goto re:
  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.     re:
  8.         cout<<"請入你的成績:";
  9.         cin>>score;
  10.         switch(score)
  11.         {
  12.             case 80 ... 100:   
  13.                 cout<<"甲等"<<endl;
  14.                 break;
  15.             case 70 ... 79:
  16.                 cout<<"乙等"<<endl;
  17.                 break;
  18.             case 60 ... 69:
  19.                 cout<<"丙等"<<endl;
  20.                 break;
  21.             case 0 ... 59:     
  22.                  cout<<"不及格"<<endl;
  23.                  break;
  24.             default:
  25.                 cout<<"輸入錯誤"<<endl;   
  26.     }                  
  27.    
  28.             cout<<endl;
  29.     goto re;
  30.     system("pause");
  31.     return 0;
  32. }




  33. }
複製代碼

TOP

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

TOP

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

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 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.           default:
  23.                cout<<"輸入錯誤!"<<endl;
  24.     }
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

返回列表