#include <stdio.h>
int main(){
float price = 0;
int month, day, hasP = 0;
scanf("%f %d %d %d", &price, &month, &day, &hasP);
float cut = 0;
if(month == 11 && day == 11){
cut = 0.7;
}else if(month == 12 && day == 12){
cut = 0.8;
}
float pay = price*cut - 50*hasP;
if(pay <= 0){
printf("0.00");
}else{
printf("%.2f", pay);
}
}
int main(){
float price = 0;
int month, day, hasP = 0;
scanf("%f %d %d %d", &price, &month, &day, &hasP);
float cut = 0;
if(month == 11 && day == 11){
cut = 0.7;
}else if(month == 12 && day == 12){
cut = 0.8;
}
float pay = price*cut - 50*hasP;
if(pay <= 0){
printf("0.00");
}else{
printf("%.2f", pay);
}
}
2020-11-05
在牛客打卡8天,今天学习:刷题 5 道/代码提交 6 次
全部评论
相关推荐
点赞 评论 收藏
分享
COLORSN:可以试一下,小厂看技术栈是不是很落后,如果太拉胯就别去,个人认为有实习氛围比你自己琢磨要高效不少,然后就是小厂其实也有可能会问的很难,这都比较难说,还是看自己项目含金量够不够,寒假还能不能推进学习再选择,毕竟去实习过年就10天假了 点赞 评论 收藏
分享
01-21 20:23
Miami University 前端工程师 点赞 评论 收藏
分享
查看8道真题和解析