返回列表 發帖
本帖最後由 鄭繼威 於 2022-5-30 20:27 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){

  5.     int age;
  6.     cout<<"請輸入你的年齡: ";
  7.     cin>>age;
  8.     if(age<4 && age>=0)
  9.         cout<<"幼兒票0元"<<endl;
  10.     else if(age>=4 && age<=12)
  11.         cout<<"兒童票50元"<<endl;
  12.     else if(age>=13 && age<=64)
  13.         cout<<"一般票100元"<<endl;
  14.     else if(age>=65 && age<=120)
  15.         cout<<" 敬老票70元"<<endl;
  16.     else
  17.                 cout<<"請重打"<<endl;
  18.    
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

TOP

返回列表