標題:
[作業] if...else if...else 票價分類
[打印本頁]
作者:
鄭繼威
時間:
2022-4-13 11:55
標題:
[作業] if...else if...else 票價分類
本帖最後由 鄭繼威 於 2022-5-30 19:52 編輯
最後一個if...else練習
假設有一遊樂園的票價表如下, 請設計一個小程式, 讓電腦依據使用者的年齡, 回應票價與種類:
0歲 ~ 3歲 幼兒票 免費入場
4歲 ~ 12歲 兒童票 50元
13歲 ~ 64歲 一般票 100元
65歲以上 敬老票 70元
不在以上範圍 別鬧了!
[使用者介面如下]
請輸入你的年齡: 9
購買兒童票(50元)!
請輸入你的年齡: 200
別鬧了!
作者:
黃柏青
時間:
2022-4-13 21:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int age;
cout<<"請輸入你的年齡: ";
cin>>age;
if(age<4)
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;
}
複製代碼
作者:
李彣
時間:
2022-4-13 21:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入你的年齡:";
cin>>age;
if(age<=3)
{
cout<<"幼兒票0元"<<endl;
}
else if(age>=4 && age<=12)
{
cout<<"兒童票50元"<<endl;
}
else if(age>=13 && age<65)
{
cout<<"一般票100元"<<endl;
}
else if(age>=65 && age<100)
{
cout<<"敬老票70元"<<endl;
}
else
{
cout<<"別鬧了"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2022-4-13 21:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int age;
cout<<"請輸入你的年齡: ";
cin>>age;
if(age<4)
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;
}
複製代碼
作者:
齊振睿
時間:
2022-4-13 21:13
本帖最後由 鄭繼威 於 2022-4-13 21:15 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的年齡: ";
cin>>score;
if(score==100)
cout<<" 幼兒票 0元"<<endl;
else if(score<100 && score>=60)
cout<<"兒童票 50元"<<endl;
else if(score<60 && score>0)
cout<<"一般票 100元"<<endl;
else if(score==0)
cout<<"敬老票 70元"<<endl;
else
cout<<"別"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李睿宸
時間:
2022-4-19 21:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
re:
cout<<"請輸入年齡:";
cin>>age;
if(age<=3 && age>=0)
cout<<"幼兒票:免費入場"<<endl;
else if(age<=12 && age>=4)
cout<<"兒童票:50元"<<endl;
else if(age<=64 && age>=13)
cout<<"一般票:100元"<<endl;
else if(age>=65 && age<=105)
cout<<"敬老票:70元"<<endl;
else
cout<<"請輸入正確年齡"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2022-4-20 15:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
re:
cout<<"請輸入你的年齡:";
cin>>age;
if(age<4 && age>=1 )
cout<<"幼兒票 免費入場"<<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;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2022-5-24 17:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int age;
cout<<"請輸入你的年齡: ";
cin>>age;
if(age<4)
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; }
複製代碼
作者:
林劭杰
時間:
2022-5-30 19:56
本帖最後由 鄭繼威 於 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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2