#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);
}
}
Hi, namaste Krishna. So today we will be talking about that everyone is going through something in their life. Be it you, be it your friend...
No comments:
Post a Comment