- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- int age;
- cout<<"請輸入你的年齡:"<<endl;
- cin>>age;
- if (age>=0&&age<=3)
- cout<<"請購買幼兒票(免錢)"<<endl;
- else if(age>3&&age<=12)
- cout<<"請購買兒童票(50元)"<<endl;
- else if(age>12&&age<=64)
- cout<<"請購買成人票(100元)"<<endl;
- else if(age>64&&age<=100)
- cout<<"請購賣敬老票(70元)"<<endl;
- else
- cout<<"別鬧了!"<<endl;
- goto re;
- system("pause");
- return 0;
- }
-
-
複製代碼 |