企业发放的奖金按照利润提成。利润低于或等于10万元时,奖金可提10%;利润高于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可提成7.5%;20万元到40万之间时,高于20万元的部分,可提升5%;40万到60万之间时,高于40万元的部分,可提成3%;60万到100万之间时,高于60万元的部分,可提成1.5%,高于100万元时,超过100万元的部分按1%提成,从键盘输入当月利润,求应发放奖金总数
public class Programming12 {
public static void main(String[] args) {
System.out.println("请输入公司利润:");
Scanner scanner = new Scanner(System.in);
int profits = scanner.nextInt();
double w = 0;
if (profits <= 10) {
w = profits * 0.1;
} else if (profits > 10 && profits <= 20) {
w = 10 * 0.1 + (profits - 10) * 0.075;
} else if (profits > 20 && profits <= 40) {
w = 10 * 0.1 + 10 * 0.075 + (profits - 20) * 0.05;
} else if (profits > 40 && profits <= 60) {
w = 10 * 0.1 + 10 * 0.075 + 20 * 0.05 + (profits - 40) * 0.03;
} else if (profits > 60 && profits <= 100) {
w = 10 * 0.1 + 10 * 0.075 + 20 * 0.05 + 20 * 0.03 + (profits - 60) * 0.015;
} else if (profits > 100) {
w = 10 * 0.1 + 10 * 0.075 + 20 * 0.05 + 20 * 0.03 + 40 * 0.015 + (profits - 100) * 0.01;
}
System.out.println("公司利润为:" + profits + "万");
System.out.println("公司应当发放的奖金总数为:" + w + "万");
}
}
代码小兵64503-29 11:46
代码小兵87208-06 11:36
代码小兵34507-29 13:19