C语言程序设计 打折程序

C语言程序设计 打折程序,第1张

#include <stdio.h>

int main()

{float x

 scanf("%f",&x)

 if(x>5000)x*=0.7

   else if(x>1000)x*=0.85

     else if(x>500)x*=0.9

 printf("%.2f\n",x)

 return 0

}

#include<stdio.h>

int main(void)

{

while(1)

{

printf("\n请输入商品价格,无商品时请输入负数!\n")

float price = 0

float sum = 0

while(1)

{

scanf("%f",&price)

if(price <0) break

sum += price

}

if(sum >1000)

{

printf("您可以享受折扣,应付的金额为%.2f元。\n",sum*0.955)

}

else

{

printf("您的消费还不满足折扣要求,应付的金额为%.2f元;您只需再消费%.2f元就可以享受折扣!\n",sum,1000-sum)

}

}

return 0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8131748.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-13
下一篇 2023-04-13

发表评论

登录后才能评论

评论列表(0条)

保存