#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);
}
}
Can’t Read Books? Try This 5-Minute Habit Instead (It Actually Works) Hi, namaste Krishna. So, um today I'll be sharing a very good ha...
No comments:
Post a Comment