Write a Programme to input the salary of a person and calculate the HRA and DA according
to the following conditions:
(a) Salary HRA DA
(b) 5000-10000 10% 5%
(c) 10001-15000 15% 8%
Answers
Answered by
2
Answer:
How do you calculate gross income from HRA and DA?
If basic_salary <= 10000 then, hra = basic_salary * 0.8 and da = basic_salary * 0.2 . Similarly check basic salary and compute hra and da accordingly. Calculate final gross salary using formula gross_salary = basic_salary + da + hra .
Answered by
1
Explanation:
I hope this will help you
Attachments:
Similar questions