[20-04-27][Self-test 11]Java CountBonus
Posted mirai3usi9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[20-04-27][Self-test 11]Java CountBonus相关的知识,希望对你有一定的参考价值。
1 package test_2_2; 2 3 import java.util.Scanner; 4 5 public class CountBonus { 6 7 public static void main(String[] args) { 8 /** 企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10%; 9 * 利润高于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可提成7.5%; 10 * 20万到40万之间时,高于20万元的部分,可提成5%;40万到60万之间时高于40万元的部分,可提成3%; 11 * 60万到100万之间时,高于60万元的部分,可提成1.5%,高于100万元时,超过100万元的部分按1%提成, 12 * 从键盘输入当月利润I,求应发放奖金总数? */ 13 System.out.println("请输入利润(万元):"); 14 Scanner sc = new Scanner(System.in); 15 double profit = sc.nextDouble(); 16 17 double bonus = getBonus(profit); 18 System.out.println("应发奖金总数为:" + bonus + "万元"); 19 20 } 21 22 private static double getBonus(double profit) { 23 24 double bonus = 0; 25 if (profit <= 10) { 26 bonus += profit * 0.1; 27 } else if (profit <= 20) { 28 bonus += (profit - 10) * 0.075 + getBonus(10); 29 } else if (profit <= 40) { 30 bonus += (profit - 20) * 0.05 + getBonus(20); 31 } else if (profit <= 60) { 32 bonus += (profit - 40) * 0.03 + getBonus(40); 33 } else if (profit <= 100) { 34 bonus += (profit - 60) * 0.015 + getBonus(60); 35 } else { 36 bonus += (profit - 100) * 0.01 + getBonus(100); 37 } 38 39 return bonus; 40 } 41 42 }
结果如下:
请输入利润(万元):
102
应发奖金总数为:3.97万元
以上是关于[20-04-27][Self-test 11]Java CountBonus的主要内容,如果未能解决你的问题,请参考以下文章
[20-06-04][Self-test 46]Java Linker Manage
[20-06-04][Self-test 46]Java Linker Manage
[20-05-02][Self-test 31]Java Dictionary
[20-05-02][Self-test 33]Java Car