电影院规定,零售票价30元每张,20张及以上属于团体票,25元每张。编程,输入购票数量,计算总票价并输出。用C语言最简单的代码
时间: 2024-05-12 12:18:34 浏览: 74
springboot基于web的电影院购票系统论文-springboot274基于web的电影院购票系统-java-文档
5星 · 资源好评率100%
以下是用 C 语言编写的计算总票价的简单代码:
```
#include <stdio.h>
int main()
{
int numTickets;
int totalPrice;
printf("请输入购票数量:");
scanf("%d", &numTickets);
if (numTickets < 20)
{
totalPrice = numTickets * 30;
}
else
{
totalPrice = numTickets * 25;
}
printf("总票价为:%d 元\n", totalPrice);
return 0;
}
```
这个程序首先提示用户输入购票数量,然后通过 scanf 函数获取输入的值。接下来通过一个 if/else 语句来判断购票数量是否达到团体票的条件,计算出总票价并打印输出。
阅读全文