使用C语言写以下代码某商场推出打折促销活动:若顾客购物额不满 100 元则不优惠;达到或超过 100 元则九五折优惠;达到或超过 200 元则九折优惠;达到或超过 500 元则八五折优惠;达到或超过 1000 元则八折优惠。请编写程序,根据购物金额计算优惠后的实际付款金额。
时间: 2023-05-25 10:03:09 浏览: 207
C#超市商场促销折扣满减
```C
#include <stdio.h>
int main()
{
float total; //购物总金额
float discount = 1.0; //默认优惠无打折,打折系数为1.0
float pay; //应付金额
printf("请输入购物总金额:");
scanf("%f", &total);
if (total >= 100 && total < 200)
{
discount = 0.95; //九五折
}
else if (total >= 200 && total < 500)
{
discount = 0.9; //九折
}
else if (total >= 500 && total < 1000)
{
discount = 0.85; //八五折
}
else if (total >= 1000)
{
discount = 0.8; //八折
}
pay = total * discount;
printf("应付款金额:%.2f元", pay);
return 0;
}
```
阅读全文