返回列表 發帖

你能考駕照嗎

本帖最後由 謝典育 於 2013-9-20 12:13 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int age;
  7.     cout<<"請輸入年齡:"<<endl;
  8.     cin>>age;
  9.    
  10.     if(age>=18 && age<=19)
  11.           {
  12.                 cout<<"(一)您可考領普通駕駛執照、輕型或普通重型機車駕駛執照"<<endl;       
  13.           }else if(age>=66 && age<=110)
  14.     {
  15.     cout<<"(一)您可考領普通駕駛執照、輕型或普通重型機車駕駛執照"<<endl;   
  16.     cout<<"(二)您可考領大型重型機車駕駛執照"<<endl;
  17.                 }else if(age>=20 && age<=65)
  18.     {
  19.     cout<<"(一)您可考領普通駕駛執照、輕型或普通重型機車駕駛執照"<<endl;   
  20.     cout<<"(二)您可考領大型重型機車駕駛執照"<<endl;
  21.                 cout<<"(三)您可考領職業駕駛執照"<<endl;   
  22.     }else if(age<=17 && age>=0)
  23.     {
  24.                   cout<<"您還未滿18歲!!"<<endl;
  25.                         cout<<"您還要等"<<18-age<<"年!! 才可以考駕駛執照......x.x"<<endl;
  26.     }else
  27.                 {
  28.     cout<<"你已經不在人間了!!"<<endl;
  29.     }
  30.     system("pause");   
  31.     return 0;   
  32. }
複製代碼

提示: 作者被禁止或刪除 內容自動屏蔽

TOP

返回列表