oula


私信TA

用户名:wielch

访问量:696

签 名:

等  级
排  名 22108
经  验 667
参赛次数 0
文章发表 5
年  龄 0
在职情况 学生
学  校 湖南工业大学
专  业

  自我简介:

解题思路:
这其实就是if语句的理解
注意事项:
还有更快的写法,利润到了某一档时,它前面的奖金是固定的,不用去计算了
参考代码:

#include <stdio.h>


int CalculateReward(int Profit);


int main(void)

{

    int profit = 0;

    scanf("%d",&profit);

    int reward = CalculateReward(profit);

    printf("%d\n",reward);

    return 0;

}


int CalculateReward(int Profit)

{

    int re = 0;

    if(Profit >  1000000)

    {

        re = (Profit - 1000000) / 100;

        Profit = 1000000;

    }

    if(Profit > 600000 && Profit <= 1000000)

    {

        re += (Profit - 600000) * 15 / 1000;

        Profit = 600000;

    }

    if(Profit > 400000 && Profit <= 600000)

    {

        re += (Profit - 400000) * 3 / 100;

        Profit = 400000;

    }

    if(Profit > 200000 && Profit <= 400000)

    {

        re += (Profit - 200000) * 5 / 100;

        Profit = 200000;

    }

    if(Profit > 100000 && Profit <= 200000)

    {

        re += (Profit - 100000) * 75 / 1000;

        Profit = 100000;

    }

    if(Profit <= 100000)

    {

        re += Profit / 10;

    }


    return re;

}



 

0.0分

0 人评分

新上线《蓝桥杯辅导》课程,近五年的蓝桥杯省赛与国赛真题都有,从读题开始理解题意、梳理思路、实现代码再提交评测全过程,可有效提升获奖比例甚至进国赛!课程介绍、试听请猛击这里

  评论区

  • «
  • »