- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int age;
- cout<<"請輸入你的年齡:";
- cin>>age;
- if(age<=3)
- {
- cout<<"幼兒票0元"<<endl;
- }
- else if(age>=4 && age<=12)
- {
- cout<<"兒童票50元"<<endl;
- }
- else if(age>=13 && age<65)
- {
- cout<<"一般票100元"<<endl;
- }
- else if(age>=65 && age<100)
- {
- cout<<"敬老票70元"<<endl;
- }
- else
- {
- cout<<"別鬧了"<<endl;
- }
-
-
- system("pause");
- return 0;
- }
複製代碼 |