Friday, October 30, 2020

C program to calculate bonus

 #include <stdio.h>

int main() {

    float s,b;

    printf("Enter salary:");

    scanf("%f",&s);

    b=s*0.50;

    if(b<10000)

    {

        b=10000;

    }

    else if(b>25000)

    {

        b=25000;

    }

    printf("Bonus=%.2f",b);

}

No comments:

Post a Comment

Can’t Read Books? Try This 5-Minute Habit Instead (It Actually Works)

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...