Создайте программу, которая вычислит чистый доход сотрудника.
gross income = basic + overtime basic = hours work x rate per hour overtime = 1.5 of its rate per hour deduction = sss+ philhealth+ pag-ibig net income = gross income – deduction rate per hour = rate per day/8 sss = 10% of gross income if gross income is greater than 10K , 8% of gross income if gross income is greater than 5k , otherwise 5% of gross income. philhealth = 500 if civil status is ‘S’ , 300 if ‘M’ , otherwise 400 pag-ibig = 5% of gross income if gross income is greater than 10K , 3% of gross income if gross income is greater than 5k , otherwise 2% of gross income. employment status rate per day ‘R’ 800 ‘P’ 600 ‘C’ 500 ‘T’ 450 Otherwise 400
Что я уже пробовал:
#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; }
jeron1
Если есть проблема или вопрос, пожалуйста, изложите его как можно подробнее.
Patrice T
А у вас есть вопрос ?