商场为员工提供了基本工资,物价津贴及房租津贴。其中,物价津贴为基本工资的40%,物价津贴为基本工资的25%,要求:从控制台输入基本工资,并计算输出实领工资

public class Test02 {
    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        System.out.println("请输入基本工资");
        double salary=sc.nextDouble();
        double price=salary*0.4;
        double rent=salary*0.25;
        double pay=salary+price+rent;
        System.out.println("该员工的工资细目为");
        System.out.println("基本工资为:"+salary);
        System.out.println("物价津贴为:"+price);
        System.out.println("房租津贴为"+rent);
        System.out.println("员工薪水是"+pay);
    }
}

你可能感兴趣的:(练习题,java)