返回列表 發帖
本帖最後由 施伯叡 於 2013-10-26 16:32 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int ans;
  7.     cout << "超智障問答" <<endl;
  8.     cout << "請問水是什麼顏色" ;
  9.     cout << "(1)黃色 (2)紅色 (3)透明 (4)紫色" << endl;
  10.     cout << "請作答:" ;
  11.     cin >> ans ;
  12.       
  13.     if (ans == 1)
  14.     {
  15.        cout << "去測一下你的智商吧" ;        
  16.     }
  17.     else if (ans == 2)
  18.     {
  19.        cout << "犯案現場請勿靠近" ;     
  20.     }
  21.     else if (ans == 3)
  22.     {
  23.        cout << "答對了,你的智商180";     
  24.     }
  25.     else if (ans == 4)
  26.     {
  27.        cout << "你喝水溝的水喔";     
  28.     }
  29.     else
  30.     {
  31.        cout << "別亂打" ;   
  32.     }
  33.     cout<<endl;
  34.    
  35.     system("pause");
  36.     return 0;
  37. }
複製代碼

TOP

返回列表