本帖最後由 鄭繼威 於 2022-5-30 20:27 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main(){
- int age;
- cout<<"請輸入你的年齡: ";
- cin>>age;
- if(age<4 && age>=0)
- cout<<"幼兒票0元"<<endl;
- else if(age>=4 && age<=12)
- cout<<"兒童票50元"<<endl;
- else if(age>=13 && age<=64)
- cout<<"一般票100元"<<endl;
- else if(age>=65 && age<=120)
- cout<<" 敬老票70元"<<endl;
- else
- cout<<"請重打"<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |