返回列表 發帖
  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

返回列表