返回列表 發帖

switch 判斷式

本帖最後由 tonyh 於 2016-5-23 12:23 編輯

利用 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. }
複製代碼

本帖最後由 邱柏揚 於 2016-5-24 09:38 編輯
  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

本帖最後由 張恩嘉 於 2016-5-24 10:04 編輯
  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. }      
  29.    goto re;
  30.     system("pause");
  31.     return 0;   
  32. }  
複製代碼

TOP

本帖最後由 謝易錚 於 2016-5-24 09:59 編輯
  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

本帖最後由 王淳暘 於 2016-5-24 09:38 編輯
  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.     { 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.     goto re;
  27. system("pause");
  28. return 0;
  29. }
複製代碼

TOP

本帖最後由 蔡孟庭 於 2016-5-24 10:02 編輯
  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.     goto re;
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

TOP

本帖最後由 劉得榮 於 2016-5-23 21:05 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入你的成績:";
  8.     while(cin>>score)
  9.     {
  10.         switch(score)
  11.         {
  12.             case  80 ... 100:
  13.                      cout<<"甲等!";
  14.                      break;
  15.             case  70 ... 79:
  16.                      cout<<"乙等";
  17.                      break;
  18.             case  60 ... 69:
  19.                      cout<<"丙等";
  20.                      break;
  21.             case  0 ... 59:
  22.                      cout<<"不及格";
  23.                      break;
  24.             default:
  25.                     cout<<"錯誤";
  26.         }
  27.         cout<<endl;
  28.         cout<<"請輸入你的成績:";
  29.     }


  30. return 0;
  31. }
複製代碼

TOP

本帖最後由 劉純妘 於 2016-5-24 10:02 編輯
  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.          default:
  22.         cout<<"輸入錯誤"<<endl;
  23.      }
  24.      cout<<endl;
  25.      goto re;
  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.     re:
  8.     cout<<"請輸入你的年齡:";
  9.     cin>>score;
  10.     switch(score)
  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.     goto re;
  27. system("pause");
  28. return 0;
  29. }
複製代碼

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.    
  31.     system ("pause");
  32.     return 0;
  33.    
  34. }
複製代碼

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.     goto re;      
  28.     system("pause");
  29.     return 0;      
  30. }   
  31.      
複製代碼

TOP

本帖最後由 孫漢瑄 於 2016-5-24 10:00 編輯
  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.     goto re;
  28.     system ("pause");
  29.     return 0;
  30. }
複製代碼

TOP

本帖最後由 洪為濬 於 2016-5-24 10:13 編輯
  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;
複製代碼

TOP

本帖最後由 謝旻錡 於 2016-5-24 09:59 編輯
  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 90 ... 100:
  12.               cout<<"甲等"<<endl;
  13.               break;
  14.          case 80 ... 89:
  15.               cout<<"乙等"<<endl;
  16.               break;
  17.          case 70 ... 79:
  18.               cout<<"丙等"<<endl;
  19.               break;
  20.          case 60 ... 69:
  21.               cout<<"丁等"<<endl;
  22.               break;
  23.          case 0 ... 59:
  24.               cout<<"不及格"<<endl;
  25.               break;
  26.               default:
  27.               cout<<"錯誤"<<endl;
  28.               break;            
  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.    
  31.     system ("pause");
  32.     return 0;
  33.    
  34. }
複製代碼

TOP

返回列表