文章
4
粉丝
181
获赞
0
访问
37.6k
#include<stdio.h>
#define A 0.95
#define B 0.90
#define C 0.85
#define D 0.80
int main()
{
double x;
while (scanf("%lf", &x) != EOF)
{
if (x >= 5000)
printf("discount=%g,pay=%g\n", D, x*D);
else if (x >= 3000)
printf("discount=%g,pay=%g\n", C, x*C);
else if (x >= 2000)
printf("discount=%g,pay=%g\n", B, x*B);
else if (x >= 1000)
printf("discount=%g,pay=%g\n", A, x*A);
else if (x >= 0)
printf("discount=1,pay=%g\n", x);
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发