评论

收藏

[C++] BC37 网购

编程语言 编程语言 发布于:2021-12-25 16:29 | 阅读数:598 | 评论:0

DSC0000.png
#include<stdio.h>
int main()
{
  double price = 0;//商品价格
  int month = 0;
  int day = 0;
  int flag = 0;//flag表示有无优惠券
  scanf("%lf %d %d %d",&price,&month,&day,&flag);
  if(month==11 && day == 11)
  {
    price=price*0.7;
  }
  if(month ==12 && day ==12)
  {
    price =price *0.8;
  }
  price =price -50*flag;
   if(price<0.0)
   {
     printf("%.2lf",0.00);
   }
  else
    printf("%.2lf",price);
  return 0;
}

关注下面的标签,发现更多相似文章