达咩


私信TA

用户名:damie

访问量:3731

签 名:

等  级
排  名 20252
经  验 698
参赛次数 0
文章发表 5
年  龄 0
在职情况 学生
学  校 哈尔滨工程大学
专  业

  自我简介:

解题思路:无脑ifelse

注意事项:

参考代码:

#include<stdio.h>

int main()

{

    int prize,profit;

    

    scanf("%d",&profit);

    

    if(profit <= 100000){

        prize = 0.1 * profit;

    }else if(profit > 100000 && profit <= 200000){

        prize = 100000 * 0.1 + (profit - 100000) * 0.075;

    }else if(200000<profit&&profit<=400000){

        prize = 100000 * 0.1 + (200000-100000) * 0.075 + (profit - 200000)*0.05;

    }else if(400000<profit&&profit<=600000){

        prize = 100000 * 0.1 + (200000-100000) * 0.075 + (400000-200000) * 0.05 + (profit - 400000) * 0.03;

    }else if(600000<profit&&profit<=1000000){

        prize = 100000 * 0.1 + (200000-100000) * 0.075 + (400000-200000) * 0.05 + (600000 - 400000) * 0.03 + (profit-600000)*0.015;

    }else if(profit>1000000){

        prize = 100000 * 0.1 + (200000-100000) * 0.075 + (400000-200000) * 0.05 + (600000 - 400000) * 0.03 + (1000000-600000)*0.015 + (profit-1000000)*0.01;

    }

    

    printf("%d",prize);

    return 0;


}


 

0.0分

2 人评分

  评论区

这个学姐题解上瘾
2021-10-06 13:43:47
  • «
  • 1
  • »