返回列表 發帖

007 if else 機車使用年齡判斷

試做一個判斷是否能騎摩托車的小程式 (輸入年齡, 判斷是否滿18歲)

本帖最後由 林宇翔 於 2014-3-8 14:18 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int x;
  7.         cout << "請輸入你的年齡:" ;
  8.         cin >> x;
  9.         if( x >= 18 )
  10.         {
  11.                 cout << "可以騎摩托車" << endl;
  12.         }
  13.         else if( x < 18 && x > 0)
  14.         {
  15.                 cout << "不准騎摩托車,小屁孩" << endl;
  16.         }
  17.         else if(x <= 0)
  18.         {
  19.                 cout << "說謊打屁屁" << endl;
  20.         }
  21.         system("pause");
  22.         return 0;
  23. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;
  4. int main()
  5. {
  6.         int x;
  7.         cout << "請輸入您的年齡:";
  8.         cin >> x;
  9.         if (x>=18 && x<=100)
  10.         {
  11.                 cout << "可以騎摩托車";
  12.         }
  13.         else if (x<=17 && x>=1)
  14.         {
  15.                 cout << "不能騎摩托車";
  16.         }
  17.         else
  18.         {
  19.                 cout << "你找死喔!";
  20.         }
  21.         return 0;
  22. }
複製代碼

TOP

返回列表