Calculation of Gross Salary using if-else statement

This program simply calculates the simple interest from the given conditions. It just demonstrates the use of the if-else statement.

In a company if an employee is paid as under:
If his basic salary is less than Rs. 1500, then HRA=10% of basic salary and DA=90% of
basic salary.
If his salary is either equal to or above Rs. 1500, then HRA = Rs. 500 and DA = 98% of
basic salary.
If the employee's salary is input through the keyboard write a program to find his
gross salary.



#include<stdio.h>
main()
{

float bs, gs, da, hra;

printf ("Enter basic salary:");

scanf ("%f", &bs);

if (bs<1500)

{
hra=bs*10/100;
da=bs*90/100;

}
else
{
hra=500;
da=bs*98/100;

}

gs=bs + hra + da;

printf ("gross salary = Rs. %f", gs);
}




The file can be found at:
Download File

Comments

Anonymous said…
well thanks a lot, was very helpful... hope we get some more different examples.

Popular posts from this blog

C Program - Calculation of Area and Circumference of a Circle using Pointers

Matchstick Game using C Programming

C Program to Calculate Factorial of a number using Recursion