工资计算
作者:互联网
商店为员工提供了基本工资、物价津贴及房价津贴。其中,物价津贴为基本工资的40%,房租津贴为基本工资的25%。
public class haha {
public static void main(String[]args){
int custNO;
System.out.print("请输入基本工资: ");
Scanner input=new Scanner(System.in);
custNO=input.nextInt();
System.out.println("该员工的基本工资细目为:");
System.out.println("基本工资为:"+custNO);
double Pricesubsidy=custNO*0.4;
double Rentallowance=custNO*0.25;
double Employeesalary=custNO+Rentallowance+Pricesubsidy;
System.out.println("物价津贴:"+Pricesubsidy);
System.out.println("房租津贴:"+Rentallowance);
System.out.println("员工薪水:"+Employeesalary);
}
}
标签:工资,System,custNO,计算,基本工资,println,津贴,out 来源: https://blog.csdn.net/czm320/article/details/115715507