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