帮我写一个c语言能结算价格的代码
时间: 2023-03-23 16:03:52 浏览: 667
简单的结账系统(C语言)
好的,以下是一个简单的C语言代码,可以用来结算价格:#include <stdio.h>int main() {
float price, discount, total; printf("请输入商品价格:");
scanf("%f", &price); printf("请输入折扣(-1之间的小数):");
scanf("%f", &discount); total = price * discount; printf("您需要支付的价格为:%.2f元\n", total); return ;
}这个代码会要求用户输入商品价格和折扣,然后计算出最终需要支付的价格,并将结果输出到屏幕上。注意,这个代码只是一个简单的示例,实际应用中可能需要考虑更多的因素,比如税费、运费等等。
阅读全文