从键盘输入两件商品的价格和数量,按照格式输出价格,数量和总价
时间: 2023-03-31 17:02:19 浏览: 249
好的,这个问题我可以回答。请您输入第一件商品的价格和数量,以空格分隔。
(等待用户输入)
请您输入第二件商品的价格和数量,以空格分隔。
(等待用户输入)
根据您输入的信息,以下是您购买的商品清单:
商品 1:价格 xxx,数量 xxx,总价 xxx
商品 2:价格 xxx,数量 xxx,总价 xxx
总价为 xxx 元。谢谢!
相关问题
“从键盘输入两件商品的价格和数量,按照格式输出价格,数量和总价”
好的,这个问题我可以回答。请按照以下格式输入商品价格和数量:
商品1价格 商品1数量
商品2价格 商品2数量
例如:10.5 2
8.2 3
输出格式为:
商品1:价格10.5,数量2,总价21
商品2:价格8.2,数量3,总价24.6
谢谢。
“从键盘输入两件商品的价格和数量,按照格式输出价格,数量和总价”用C语言代码怎么编写
可以使用以下代码实现:
#include <stdio.h>
int main() {
float price1, price2;
int quantity1, quantity2;
printf("请输入第一件商品的价格和数量:\n");
scanf("%f %d", &price1, &quantity1);
printf("请输入第二件商品的价格和数量:\n");
scanf("%f %d", &price2, &quantity2);
float total1 = price1 * quantity1;
float total2 = price2 * quantity2;
float total = total1 + total2;
printf("第一件商品:价格 %.2f,数量 %d,总价 %.2f\n", price1, quantity1, total1);
printf("第二件商品:价格 %.2f,数量 %d,总价 %.2f\n", price2, quantity2, total2);
printf("总价:%.2f\n", total);
return ;
}
阅读全文