Computer Science, asked by varun1443, 8 months ago

Jeevitha just started to work as a programming trainer for UIT's Placement Cell. She is paid Rs.100 an hour, with a few exceptions. She earns an extra Rs.15 an hour for any part of a day where she works for more than 8 hours, and an extra Rs.25 an hour for hours beyond 40 in any one week. Also, she earns a 25% bonus for working on Saturdays and a 50% bonus for working on Sundays. The bonuses for Saturday and Sunday are computed based on the hours worked on those days. And there is no bonus for working more than 40 hours in a week. You'll be given the number of hours Jeevitha worked on each day in a week (Sunday, Monday, ..., Saturday), and you need to compute her salary for the week. INPUT & OUTPUT FORMAT: Input consists of 7 integers less than or equal to 24 on separate lines Print Jeevith's salary for a week.

Answers

Answered by Anonymous
1

Answer:

Jeevitha just started work as a programming trainer for UIT's Placement Cell. She is paid Rs.100 an hour, with a few exceptions. She earns an extra Rs.15 an hour for any part of a day where she works more than 8 hours, and an extra Rs.25 an hour for hours beyond 40 in any one week. Also, she earns a 25% bonus for working on Saturday and a 50% bonus for working on Sunday. The bonuses for Saturday and Sunday are computed based on the hours worked those days; they are not used to calculate any bonus for working more than 40 hours in a week. You'll be given the number of hours Jeevitha worked on each day in a week (Sunday, Monday, ..., Saturday), and you need to compute her salary for the week.

#include<stdio.h>

int main()

{

int sun, mon, tue, wed, thurs, fri, sat;

int bonus, bonusrate, rate1, rate2, rate3, rate4, rate5, rate6, rate7, rate8 = 0;

int edays, totaldays, totalrate;

scanf("%d", &sun);

scanf("%d", &mon);

scanf("%d", &tue);

scanf("%d", &wed);

scanf("%d", &thurs);

scanf("%d", &fri);

scanf("%d", &sat);

rate1 = sun * 150;

rate7=sat*125;

if(mon <= 8)

{

rate2 = mon * 100;

}

else if(mon > 8)

{

bonus = mon - 8;

bonusrate = bonus * 115;

rate2 = bonusrate + 800;

}

if(tue <= 8)

{

rate3 = tue * 100;

}

else if(tue > 8)

{

bonus = tue - 8;

bonusrate = bonus * 115;

rate3 = bonusrate + 800;

}

if(wed <= 8)

{

rate4 = wed * 100;

}

else if(wed > 8)

{

bonus = wed - 8;

bonusrate = bonus * 115;

rate4 = bonusrate + 800;

}

if(thurs <= 8)

{

rate5 = thurs * 100;

}

else if(thurs > 8)

{

bonus = thurs - 8;

bonusrate = bonus * 115;

rate5 = bonusrate + 800;

}

if(fri <= 8)

{

rate6 = fri * 100;

}

else if(fri > 8)

{

bonus = fri - 8;

bonusrate = bonus * 115;

rate6 = bonusrate + 800;

}

totaldays = mon + tue + wed + thurs + fri;

if(totaldays > 40)

{

edays = totaldays - 40;

rate8 = edays * 25;

}

totalrate = rate1 + rate2 + rate3 + rate4 + rate5 + rate6 + rate7 + rate8;

printf("%d", totalrate);

return 0;

}

Similar questions