標題:
[作業] if...else if...else 票價分類
[打印本頁]
作者:
方浩葦
時間:
2024-6-1 09:23
標題:
[作業] if...else if...else 票價分類
假設有一遊樂園的票價表如下, 請設計一個小程式, 讓電腦依據使用者的年齡, 回應票價與種類:
3歲以下 幼兒票 免費入場
4歲 ~ 12歲 兒童票 50元
13歲 ~ 64歲 一般票 100元
65歲以上 敬老票 70元
[使用者介面如下]
請輸入你的年齡: 9
購買兒童票(50元)!
請輸入你的年齡: 200
別鬧了!
作者:
劉奕劭
時間:
2024-6-1 16:28
#include <iostream>
#include <cstdlib>
using namespace std;
int main(){
int x;
re:
cout<<"請輸入年齡";
cin>>x;
if(x<=3){
cout<<"幼童票,免費入場!"<<endl;
}
else if(x<=12){
cout<<"購買兒童票(50元)!"<<endl;
}
else if(x<=64){
cout<<"購買一般票(100元)!"<<endl;
}
else if(x>64&&x<100){
cout<<"購買敬老票(70元)!"<<endl;
}
else{
cout<<"別鬧了!"<<endl;
}
goto re;
system ("pause");
return 0;
}
作者:
高湘庭
時間:
2024-6-2 19:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int age;
re:
cout<<"請輸入你的年齡";
cin>>age;
if(age<=3)
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<=100)
cout<<"購買敬老票(70元)"<<endl;
else
cout<<"別鬧了!"<<endl;
goto re;
system("pause");
return 0;
}
作者:
林少謙
時間:
2024-6-4 15:29
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
re:
cout<<"請輸入你的年齡:";
cin>>x;
if (x<=3&&x>0){
cout<<"幼兒免費入場"<<endl;
}
else if (x>=4&&x<=12){
cout<<"購買兒童票(50元)"<<endl;
}
else if (x>=13&&x<=64){
cout<<"購買一般票(100元)"<<endl;
}
else if (x>=65&&x<105){
cout<<"購買敬老票(70元)"<<endl;
}
else{
cout<<"輸入錯誤"<<endl;
}
goto re;
system("pause");
return 0;
}
作者:
洪榮辰
時間:
2024-6-8 14:41
本帖最後由 洪榮辰 於 2024-6-8 14:43 編輯
#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>=4 && age<=12){
cout<<"購買兒童票(50元)!"<<endl;
}
else if(age>=13 && age<=64){
cout<<"購買一般票(100元)!"<<endl;
}
else if(age>=65 && age<=100){
cout<<"購買敬老票(70元)!"<<endl;
}
else{
cout<<"別鬧了!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李偈睿
時間:
2024-6-8 16:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
re:
cout<<"請輸入你的年齡: ";
cin>>x;
if(x<=3)
cout<<"幼兒票(免費入場)"<<endl;
else if(x>=4 && x<=12)
cout<<"兒童票(50元)"<<endl;
else if(x>=13 && x<=64)
cout<<"一般票(100元)"<<endl;
else if(x>=65 && x<=100)
cout<<"敬老票(70元)"<<endl;
else
cout<<"別鬧了"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2