计算企业应发放奖金总致,奖金发放标准如下:
企业发放的奖金根利润进行操成,利润低于或等于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%提成。
从盘输入当月利润,求应发放奖金总数,井输出结果。
package z1;
public class z4 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int x = 1100000;//获得的利润
double b;
int c;
double d;
double f;
if(x<=100000) {
System.out.println("提成="+x*0.1);
}
else if(x>=100000&x<200000) {
b = 10000;
c = x - 100000;
d = c * 0.075;
f = b + d;
System.out.println("提成="+f);
}
else if(x>=200000&x<400000) {
b = 10000 + 100000 * 0.075;
c = x - 200000;
d = c * 0.05;
f = b + d;
System.out.println("提成="+f);
}
else if(x>=400000&x<600000) {
b = 10000 + 100000 * 0.075 + 200000 * 0.05;
c = x - 400000;
d = c * 0.03;
f = b + d;
System.out.println("提成="+f);
}
else if(x>=600000&x<=1000000) {
b = 10000 + 100000 * 0.075 + 200000 * 0.05 + 200000 * 0.03;
c = x - 600000;
d = c *0.015;
f = b + d;
System.out.println("提成="+f);
}
else if(x>1000000) {
b = 10000 + 100000 * 0.075 + 200000 * 0.05 + 200000 * 0.03 + 400000 * 0.015;
c = x - 1000000;
d = c * 0.01;
f = b + d;
System.out.println("提成="+f);
}
}
}
标签:200000,提成,System,100000,println,out,利润 From: https://www.cnblogs.com/yiersansiwu/p/17399998.html