About Me

My photo
Davao City, Philippines, Philippines
HaI aDD ko NInu B..sA AkoANG MgA EMaIL ad.. Friendster: anica04@yahoo.com Multiply: shakugan @yahoo.com Perspot: veronicardo@yahoo.com Facebook: shakugan@yahoo.com Yahoo Messenger: veronicarebay@rocketmail.com Tnx..! AnD My NO. is 09284371521 TxtMeYt Ta nInU ha..HEHehEHe

Thursday, February 12, 2009

Exercises 3


#include
#include
int salary, years, bonus;
void main()
{
clrscr();
printf("Enter Salary:");
scanf("%d", &salary);
printf("Enter Years of Service:");
scanf("%d", &years);
bonus=0;
if (years==1){
bonus=salary*0.10;
printf("Bonus: %d", bonus);
}
else if ((years<=5) && (years>=2)){
bonus=salary*0.20;
printf("Bonus: %d", bonus);
}
else if ((years<=10) && (years>=6)){
bonus=salary*0.50 ;
printf("Bonus: %d", bonus);
}
else if (years<=11){ bonus=salary*0.75; printf("Bonus: %d", bonus); } getch(); }

No comments:

Post a Comment