Computer Science, asked by joe7758, 4 months ago

Write a program to find the gross salary of an employee whose basic salary are pa, da, hrf, pf in Java
I NEED THE PROGRAMM GUYSS​

Answers

Answered by sanikapandya8
1

Answer:

"write a program in java to input name and basic salary of an employee. Calculate and display the gross salary and net salary when : da = 30% of basic, hra = 12.5% of basic, pf = 10% of basic, gross= basic+ da+ hra, net pay = gross - pf"

Answered by Amatullahtinwala569
5

Answer:

The idea is to find the allowance on the basis of the grade and then compute the HRA, DA, and PF on the basis of the basic salary. Below is the illustration of the computation of HRA, DA, and PF:

  • HRA: House Rent Allowance is 20% of the basic salary:
  • HRA = Basic Salary * 0.20

Explanation:

THANKS

Similar questions