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

TOP

返回列表