编程基础:顺序逻辑与选择逻辑程序详解
顺序逻辑程序示例:足球比赛门票销售计算
在足球比赛中,门票分为三个类别:预留票、看台票和场地票。对于每个类别,我们需要输入门票价格和售出的票数,然后计算每个类别门票的销售额,以及总售票数和总销售额。
以下是解决此问题的算法步骤:
1. 提示并读取预留票的价格和售出票数。
2. 计算预留票的销售额。
3. 提示并读取看台票的价格和售出票数。
4. 计算看台票的销售额。
5. 提示并读取场地票的价格和售出票数。
6. 计算场地票的销售额。
7. 计算总售票数。
8. 计算总销售额。
9. 打印所需的输出。
以下是实现该算法的 C 语言程序:
//calculate ticket sales for football match
#include <stdio.h>
int main() {
double rPrice, sPrice, gPrice;
double rSales, sSales, gSales, tSales;
int rTickets, sTickets, gTickets, tTickets;
printf("Reserved price and tickets sold? ");
scanf("%lf %d", &rPrice, &rTickets);
rSales = rPrice * rTickets;
printf("Stands price and tickets sold?