返回列表 發帖

switch 判斷式 (一)

本帖最後由 王瑞喻 於 2020-4-11 16:53 編輯

利用 switch 判斷式,完成如下之練習:

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int option;   
  8.     cout<<"請輸入您要買的飲料(1.咖啡 2.牛奶 3.紅茶): ";
  9.     cin>>option;
  10.     switch(option)
  11.     {
  12.         case 1:
  13.             cout<<"您點的是咖啡"<<endl;
  14.             break;
  15.         case 2:
  16.             cout<<"您點的是牛奶"<<endl;
  17.             break;
  18.         case 3:
  19.             cout<<"您點的是紅茶"<<endl;
  20.             break;
  21.         default:
  22.             cout<<"輸入錯誤"<<endl;
  23.     }
  24.     cout<<endl;
  25.     goto re;
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼
Su Wa

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     re:
  8.     cout<<"請輸入您要買的飲料(1.咖啡 2.牛奶 3.紅茶):";
  9.     cin>>x;
  10.     switch(x)
  11.     {
  12.      case 1:
  13.          cout<<"您點的是咖啡"<<endl;
  14.          break;
  15.      case 2:
  16.          cout<<"您點的是牛奶"<<endl;
  17.          break;         
  18.      case 3:
  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.     re:
  7.     int option;   
  8.     cout<<"請輸入您要買的飲料(1.咖啡 2.牛奶 3.紅茶): ";
  9.     cin>>option;
  10.     switch(option)
  11.     {
  12.         case 1:
  13.             cout<<"您點的是咖啡"<<endl;
  14.             break;
  15.         case 2:
  16.             cout<<"您點的是牛奶"<<endl;
  17.             break;
  18.         case 3:
  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 option;
  7.     cout<<"請輸入您要買的飲料(1.咖啡 2.牛奶 3.紅茶): ";
  8.     cin>>option;
  9.     switch(option)
  10.     {
  11.         case 1:
  12.              cout<<"您點的是咖啡"<<endl;
  13.              break;
  14.         case 2:
  15.              cout<<"您點的是牛奶"<<endl;
  16.              break;
  17.         case 3:
  18.              cout<<"您點的是紅茶"<<endl;
  19.              break;
  20.         default:
  21.              cout<<"輸入錯誤"<<endl;
  22.     }
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int  option;
  8.     cout<<"請輸入您要買的飲料(1.咖啡 2.牛奶 3.紅茶): ";
  9.     cin>>option;
  10.     switch(option)
  11.     {
  12.         case 1:
  13.              cout<<"您點的是咖啡" <<endl;
  14.              break;
  15.         case 2:
  16.              cout<<"您點的是牛奶" <<endl;
  17.              break;
  18.         case 3:
  19.              cout<<"您點的是紅茶" <<endl;
  20.              break;
  21.         default:
  22.             cout<<"輸入錯誤"<<endl;
  23.     }
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int option;
  7.     re:
  8.     cout<<"請輸入您要買的飲料(1.咖啡 2.牛奶 3.紅茶): ";
  9.     cin>>option;
  10.     switch(option)
  11.     {
  12.         case 1:
  13.             cout<<"你點的是咖啡"<<endl;
  14.             break;
  15.         case 2:
  16.             cout<<"你點的是牛奶"<<endl;
  17.             break;
  18.         case 3:
  19.             cout<<"你點的是紅茶"<<endl;
  20.             break;
  21.         default:
  22.             cout<<"輸入錯誤"<<endl;                  
  23.     }      
  24.     goto re;     
  25.     system("pause");
  26.     return 0;  
  27. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int option;   
  8.     cout<<"請輸入您要買的飲料(1.咖啡 2.牛奶 3.紅茶): ";
  9.     cin>>option;
  10.     switch(option)
  11.     {
  12.         case 1:
  13.             cout<<"您點的是咖啡"<<endl;
  14.             break;
  15.         case 2:
  16.             cout<<"您點的是牛奶"<<endl;
  17.             break;
  18.         case 3:
  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

返回列表