返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int age;
  7.     cout<<"請輸入你的年齡:";
  8.     cin>>age;
  9.     if(age<=3)
  10.     {
  11.         cout<<"幼兒票0元"<<endl;
  12.     }
  13.     else if(age>=4 && age<=12)
  14.     {
  15.         cout<<"兒童票50元"<<endl;
  16.     }
  17.     else if(age>=13 && age<65)
  18.     {
  19.         cout<<"一般票100元"<<endl;
  20.     }
  21.     else if(age>=65 && age<100)
  22.     {
  23.         cout<<"敬老票70元"<<endl;
  24.     }
  25.     else
  26.     {
  27.         cout<<"別鬧了"<<endl;
  28.     }
  29.    
  30.      
  31.     system("pause");
  32.     return 0;
  33. }
複製代碼

TOP

返回列表