题目: 商品价格统计
一 语言与环境
A.实现语言
C
B.环境要求
1 .Turbo C 2.0或者以上版本开发环境
二 要求
请用C语言编写一个程序,完成如下功能;定义一个结构数组,输入4种商品的名称,单价,数量,要求计算并逐个输出每种商品的总价,最后输出单价最高的商品价格。
三 实现步骤
1. 定义一个结构体,其中包括商品名称,单价,数量和总价四个成员。
2. 在程序中,使用循环结构控制连续输入(第一个循环)。
2.1 在循环结构中,显示提示信息,要求用户输入商品的名称,单价和数量。
2.2 读取输入的数据
2.3 计算商品总价
3 .在程序中,使用循环结构控制连续输出(第二个循环)。
3.1 循环输出每种商品的总价
3.2 判断并输出单价最高的商品价格
4 .运行结果如下图:
Please enter the name,price and amount of the NO.1 commodity: aaa 1 1
Please enter the name,price and amount of the NO.2 commodity: bbb 2 2
Please enter the name,price and amount of the NO.3 commodity: ccc 3 3
Please enter the name,price and amount of the NO.4 commodity: ddd 4 4
The total prices of aaa is :1The total prices of bbb is :4
The total prices of ccc is :9
The total prices of ddd is :16
The highest price is :4
D:\turboc>