#include <stdio.h>
int main()
{
float s,e;
printf("Enter salary & work experience:");
scanf("%f %f",&s,&e);
if(e>=5)
{
printf("Net Salary=%.2f",s*1.5);
}
else
{
printf("Net Salary=%.2f",s*1.25);
}
}
Finding Direction: Navigating Career Goals and Life Aspirations Life often presents us with a myriad of choices, and the path to fulfillme...
No comments:
Post a Comment