Board logo

標題: 010 if else 選擇題 [打印本頁]

作者: 游東祥    時間: 2014-3-8 15:21     標題: 010 if else 選擇題

用 if ... else if ... else 的方式把 009 的選擇題改寫!
也可以重新出題喔!
作者: 李允軒    時間: 2014-3-8 19:06

本帖最後由 李允軒 於 2014-3-8 19:48 編輯
  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;
  4. int main()
  5. {
  6.         int x;
  7.         cout << "請問這間教室中有幾個人?" << endl;
  8.         cout << "(1)1個 (2)2個 (3)3個 (4)4個" << endl;
  9.         cin >> x;
  10.     if (x==1)
  11.     {
  12.     cout << "很抱歉你答錯了";
  13.     }
  14.     else if (x==2)
  15.     {
  16.     cout << "你答錯了";
  17.     }
  18.     else if (x==3)
  19.     {
  20.     cout << "恭喜你答錯了";
  21.     }
  22.     else if (x==4)
  23.     {
  24.         cout << "你答對了";
  25.     }
  26.     else
  27.     {
  28.             cout <<"別亂打";
  29.     }
  30.            
  31.         return 0;
  32. }
複製代碼

作者: 林宇翔    時間: 2014-3-9 13:51

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int x;
  7.         cout << "英熊聯盟常識問答" << endl;
  8.         cout << "作答說明"<< endl;
  9.         cout << "題目共一題!!!全為選擇題,答案有1 2 3 4,輸入後按ENTER即可"<< endl;
  10.         cout << "題目:英雄聯盟德邦中最軟的人是?"<< endl;
  11.         cout << "答案一:歐拉夫 答案二:屁屁 答案三:索拉卡 答案四:泰達米爾"<< endl;
  12.         cout << "請作答:"<< endl;
  13.         cin >> x;
  14.         if(x == 1)
  15.         {
  16.                 cout << "恭喜答錯";
  17.         }
  18.           else if(x == 2)
  19.           {
  20.                   cout << "恭喜答錯";
  21.           }
  22.           else if(x == 3)
  23.           {
  24.                   cout << "恭喜答對";
  25.           }
  26.           else if(x == 4)
  27.           {
  28.                   cout << "恭喜答錯";
  29.           }
  30.           else
  31.           {
  32.                   cout << "不要亂打";
  33.           }
  34.         system ("pause");
  35.         return 0;
  36. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2