Friday, October 23, 2020

Calculate the net salary based on work experience and grade in C

 #include <stdio.h>

int main() 

{

    float e, s;

    char g;

    printf("Enter e,s,g");

    scanf("%f %f %c",&e,&s,&g);

    if(e>=15)

    {

        if(g=='A'||g=='a')

        {

            s=s*2;

        }

        else if(g=='B'||g=='b')

        {

            s=s*1.75;

        }

        else if(g=='C'||g=='c')

        {

            s=s*1.60;

        }

    }

    else if(e>=10)

    {

        s=s*1.5;

    }

    else if(e>=5)

    {

        s=s*1.4;

    }

    else

    {

        s=s*1.25;

    }

    printf("Net Salary=%.2f",s);

}

No comments:

Post a Comment

Struggling to Meditate? Try This Simple 1–100 Method (5 Minutes)

 Hi, so today we are going to discuss how to meditate easily in your daily life. Um, so it's like very simple but effective method that ...