返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;

  4. int main(){
  5.     char ans;
  6.     cout<<"請問1+1=?";
  7.     cout<<"\n(A)1 (B)2 (C)3 (D)4\n你的答案:";
  8.     cin>>ans;
  9.     switch(ans){
  10.         case 'A':
  11.         case 'a':
  12.              cout<<"x為正整數 x+x一定>x";
  13.              break;
  14.         case 'B':
  15.         case 'b':
  16.              cout<<"正確";
  17.              break;
  18.         case 'C':
  19.         case 'c':
  20.               cout<<"數學真好";
  21.               break;
  22.         case 'D':
  23.         case 'd':
  24.              cout<<"無言...";
  25.              break;
  26.         default:
  27.              cout<<"輸入錯誤";
  28.     }
  29.     cout<<"\n";
  30.    
  31.    
  32.     system("pause");
  33.     return 0;
  34.    
  35. }
複製代碼

TOP

返回列表