旅游景点为吸引游客,每年5到10月份,门票价格200元,其他月份是八折。不论旺季还是淡季,65岁以上老人免票,14岁以下儿童半价,其余游客全价。请编写一个景点门票计费程序。C语言
时间: 2023-04-08 20:02:55 浏览: 364
好的,我可以回答这个问题。以下是一个简单的景点门票计费程序的C语言代码:
```
#include <stdio.h>
int main() {
int age;
int month;
float price = 200.0;
float discount = 0.8;
float ticket_price;
printf("请输入游客的年龄:");
scanf("%d", &age);
printf("请输入游览的月份(1-12):");
scanf("%d", &month);
if (age >= 65) {
ticket_price = 0.0;
} else if (age <= 14) {
ticket_price = price * discount / 2;
} else {
if (month >= 5 && month <= 10) {
ticket_price = price;
} else {
ticket_price = price * discount;
}
}
printf("门票价格为:%.2f元\n", ticket_price);
return 0;
}
```
这个程序首先要求用户输入游客的年龄和游览的月份,然后根据年龄和月份计算门票价格。如果游客年龄大于等于65岁,则门票价格为0元;如果游客年龄小于等于14岁,则门票价格为旺季或淡季价格的一半;否则,如果游览月份在旺季(5-10月),门票价格为200元,否则为旺季价格的八折。最后,程序输出门票价格。
希望这个程序能够帮到你!
阅读全文