Java 代码实现企业利润提成奖金计算
import java.util.Scanner;
public class Bonus { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println('请输入当月利润:'); double profit = scanner.nextDouble(); double bonus = calculateBonus(profit); System.out.println('应发放奖金总数为:' + bonus); }
public static double calculateBonus(double profit) {
double bonus = 0;
if (profit <= 10) {
bonus = profit * 0.1;
} else if (profit <= 20) {
bonus = 10 * 0.1 + (profit - 10) * 0.075;
} else if (profit <= 40) {
bonus = 10 * 0.1 + 10 * 0.075 + (profit - 20) * 0.05;
} else if (profit <= 60) {
bonus = 10 * 0.1 + 10 * 0.075 + 20 * 0.05 + (profit - 40) * 0.03;
} else if (profit <= 100) {
bonus = 10 * 0.1 + 10 * 0.075 + 20 * 0.05 + 20 * 0.03 + (profit - 60) * 0.015;
} else {
bonus = 10 * 0.1 + 10 * 0.075 + 20 * 0.05 + 20 * 0.03 + 40 * 0.015 + (profit - 100) * 0.01;
}
return bonus;
}
}
原文地址: https://www.cveoy.top/t/topic/ouIo 著作权归作者所有。请勿转载和采集!