c++编写程序实现从键盘输入某商品的单价和数量求出商品的总价并输出
时间: 2023-05-13 19:05:28 浏览: 497
当然可以,以下是一个简单的 C 语言程序,可以实现从键盘输入某商品的单价和数量,计算商品的总价并输出:
```
#include <stdio.h>
int main() {
float price, quantity, total;
printf("请输入商品的单价:");
scanf("%f", &price);
printf("请输入商品的数量:");
scanf("%f", &quantity);
total = price * quantity;
printf("商品的总价为:%.2f\n", total);
return 0;
}
```
这个程序中,我们定义了三个变量:`price` 表示商品的单价,`quantity` 表示商品的数量,`total` 表示商品的总价。然后通过 `scanf` 函数从键盘输入单价和数量,计算出总价,最后通过 `printf` 函数输出结果。注意,我们使用了 `%.2f` 的格式化字符串来保留两位小数。
阅读全文