aumn 2021-10-29 01:00 采纳率: 100%
浏览 26
已结题

如何使用switch实现下面要求

img


13题的第2问怎么做

  • 写回答

1条回答 默认 最新

  • 网不卡我乱莎 2021-10-29 02:10
    关注

    问题的解决代码如下:

    #include <iostream>
    using namespace std;
    class Box
    {
    public:
        void set();
        double calculate();
        void display();
    private:
        double profit;
        double bonus;
    };
    void Box::set()
    {
        cout << "请输入利润为(单位:万元):";
        cin >> profit;
    }
    double Box::calculate()
    {
        bonus = 0;
        int c = profit/10;
        switch (c)
        {
        case 10:
            bonus = bonus + (profit - 100) * 0.01;
            profit = 100;
        case 6:
            bonus = bonus + (profit - 60) * 0.015;
            profit = 60;
        case 4:
            bonus = bonus + (profit - 40) * 0.03;
            profit = 40;
        case 2:
            bonus = bonus + (profit - 20) * 0.05;
            profit = 20;
        case 1:
            bonus = bonus + (profit - 10) * 0.075;
            profit = 10;
        default:
            bonus = bonus + profit * 0.1;
        }
        return bonus;
    }
    void Box::display()
    {
        cout << "该利润对应的奖金为(单位:万元):" << calculate() << endl;
    }
    int main()
    {
        Box a;
        a.set();
        a.display();
        return 0;
    }
    

    运行结果如下:

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 11月7日
  • 已采纳回答 10月30日
  • 创建了问题 10月29日

悬赏问题

  • ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境