返回列表 發帖
  1. #include<iostream>   
  2. using namespace std;
  3. int main()
  4. {
  5.      int answer;
  6.      cout<<"猜猜看岳凌幾公斤重?"<<endl;
  7.      cout<<"(1)100公斤  (2)10公斤  (3)50公斤  (4)32公斤"<<endl;
  8.      cout<<"請做答: ";
  9.      cin>>answer;
  10.                if(answer==1)
  11.                {         
  12.                cout<<"我不是豬"<<endl;
  13.                }else if(answer==2)   
  14.                {
  15.                      cout<<"我不是人乾"<<endl;
  16.                }else if(answer==3)
  17.                {
  18.                      cout<<"很接近了"<<endl;
  19.                }else if(answer==4)
  20.                {
  21.                      cout<<"賓果! 答對了!"<<endl;
  22.                }else
  23.                {
  24.                     cout<<"輸入錯誤!!!笨笨!"<<endl;
  25.                }
  26.      system("pause");
  27.      return 0;   
  28. }
複製代碼

TOP

返回列表