c语言购买水果付款代码
时间: 2023-10-14 10:30:04 浏览: 101
Five.rar(C语言版)
以下是一个简单的 C 语言程序,用于购买水果并计算总价:
```c
#include <stdio.h>
#define APPLE_PRICE 2.0
#define BANANA_PRICE 1.5
#define ORANGE_PRICE 3.0
int main() {
int num_apple, num_banana, num_orange;
double total_price;
printf("请输入购买的苹果数量:");
scanf("%d", &num_apple);
printf("请输入购买的香蕉数量:");
scanf("%d", &num_banana);
printf("请输入购买的橘子数量:");
scanf("%d", &num_orange);
total_price = num_apple * APPLE_PRICE + num_banana * BANANA_PRICE + num_orange * ORANGE_PRICE;
printf("您购买了%d个苹果,%d个香蕉,%d个橘子,总价为%.2f元。\n", num_apple, num_banana, num_orange, total_price);
return 0;
}
```
在程序中,我们使用 `#define` 定义了三种水果的单价。然后通过 `scanf` 函数获取用户输入的购买数量,计算总价,最后使用 `printf` 函数输出结果。
注意,这个程序只是一个简单的示例,实际应用中可能需要加入更多的功能,例如输入非法值的检查、价格的动态调整等。
阅读全文