Agony


私信TA

用户名:dzc21

访问量:55521

签 名:

CSDN博客:http://blog.csdn.net/qq_38712932

等  级
排  名 81
经  验 9462
参赛次数 0
文章发表 81
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

CSDN博客:http://blog.csdn.net/qq_38712932 个人博客:http://www.eternallyc.top/blog/index

解题思路:





注意事项:





参考代码:

#include <cstdio>

int main()

{

double x;

scanf("%lf",&x);

if(x<=100000)

printf("%.2lf",x*0.1);

else if(x>100000&&x<=200000)

printf("%.2lf",(x-100000)*0.075+10000);

else if(x>200000&&x<=400000)

printf("%.2lf",(x-200000)*0.05+17500);

else if(x>400000&&x<=600000)

printf("%.2lf",(x-400000)*0.03+27500);

else if(x>600000&&x<=1000000)

printf("%.2lf",(x-600000)*0.015+33500);

else if(x>1000000)

printf("%.2lf",(x-1000000)*0.01+39500);

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »