返回列表 發帖

[作業] 利用 if…else if…else 敘述重新改寫 switch 程式碼

  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

  1. #include<iostream>   
  2. using namespace std;
  3. int main()
  4. {

  5.      int answer;
  6.      cout<<"猜猜看睿帆幾公斤重?"<<endl;
  7.      cout<<"(1)1000公斤  (2)1公斤  (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

  1. #include<iostream>   

  2. using namespace std;

  3. int main()

  4. {

  5.      int answer;

  6.      cout<<"猜猜看冠鈞幾公斤重?"<<endl;

  7.      cout<<"(1)100公斤  (2)108公斤  (3)50公斤  (4)32.5公斤"<<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

返回列表