用C语言编写,1个水杯售价20,今天卖了30个,进价12元,今天赚了多少钱
时间: 2024-09-14 19:17:12 浏览: 40
用C语言编写程序来计算今天水杯的利润,可以通过以下步骤实现:
1. 定义水杯的售价和进价变量,以及今天卖出的数量。
2. 计算总收入(售价 * 卖出数量)。
3. 计算总成本(进价 * 卖出数量)。
4. 计算利润(总收入 - 总成本)。
5. 输出利润。
这里是一个简单的C语言代码示例:
```c
#include <stdio.h>
int main() {
int salePrice = 20; // 售价
int costPrice = 12; // 进价
int quantitySold = 30; // 今天卖出的水杯数量
int totalRevenue = salePrice * quantitySold; // 总收入
int totalCost = costPrice * quantitySold; // 总成本
int profit = totalRevenue - totalCost; // 利润
printf("今天卖出水杯的总收入是:%d\n", totalRevenue);
printf("今天卖出水杯的总成本是:%d\n", totalCost);
printf("今天卖出水杯的利润是:%d\n", profit);
return 0;
}
```
运行这段代码,它会计算并输出今天的利润。
阅读全文