write a python program that calculates salary of an employee given his basic pay(to be entered by the user), HRA=10% of basic pays, TSA=5% of basic pay. Define HRA nd TA as constants and use them to calculate the salary of the employee
Answers
Answer:
hope ot help then please follow so I could help u
Explanation:
#include <stdio.h>
//main program
int main()
{
//variable to store values
float basic, da, hra, ta, others;
float pf,it;
float net_salary;
//input required fields
printf("Enter Basic Salary ($): ");
scanf("%f",&basic);
printf("Enter HRA ($): ");
scanf("%f",&hra);
printf("Enter TA ($): ");
scanf("%f",&ta);
printf("Enter others ($): ");
scanf("%f",&others);
//calculate DA 12% of Basic Salary
da = (basic*12)/100;
//calculate PF 14% of Basic salary
pf = (basic*14)/100;
//calculate IT, 15% of Basic salary
it = (basic*15)/100;
//calculate net salary
net_salary = basic + da + hra + ta + others - (pf+it);
//printing Net salary
printf("Net Salary is: $ %.02f\n",net_salary);
return 0;
}