返回列表 發帖
  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)
  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.     system("pause");
  19.     return 0;   }
複製代碼

TOP

返回列表