主要思路是将利率和梯度用数组进行存储,然后用while找到利润在的最高梯度位置,先进行单独计算,下面的再进行循环计算。
#include<iostream>
using namespace std;
int main(){
int profit, bonus = 0, index=0;
cin >> profit;
double rate[6] = {10, 7.5, 5, 3, 1.5, 1};
int table[6] = {0, 100000, 200000, 400000, 600000, 1000000};
wh...