Saturday, October 24, 2020

If the grade is A then double the salary (c program)

 #include <stdio.h>

int main() {

    float s;

    char g;

    printf("Enter salary and grade:");

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

    if(g=='A')

    {

        s=s*2;

    }

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

}

No comments:

Post a Comment

Finding Direction: Navigating Career Goals and Life Aspirations

  Finding Direction: Navigating Career Goals and Life Aspirations Life often presents us with a myriad of choices, and the path to fulfillme...