Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » Mathematics ProgramRSS Feeds

Program to calculate bonus, commission and gross salary as per description formula

Posted By: Stephen Gonzales     Category: C Programming     Views: 6432

Program to calculate bonus, commission and gross salary as shown below

bonus = BONUS_RATE * quantity
commission = COMMISSION * quantity * price
gross_salary = BASE_SALARY + bonus + commission

Code for Program to calculate bonus, commission and gross salary as per description formula in C Programming

#define  BASE_SALARY 1500.00
#define  BONUS_RATE 200.00
#define  COMMISSION 0.02

void main()
{
    int quantity;
    float gross_salary,price;
    float bonus,commission;
    clrscr();

    printf("\nInput number sold and price \n");
    scanf("%d %f",&quantity,&price);

    bonus = BONUS_RATE * quantity;
    commission = COMMISSION * quantity * price;
    gross_salary = BASE_SALARY + bonus + commission;

    printf("\n");
    printf("Bonus        = %6.2f\n",bonus);
    printf("Commission   = %6.2f\n",commission);
    printf("Gross Salary = %6.2f\n",gross_salary);
    getch();
}
  
Share: 



Stephen Gonzales
Stephen Gonzales author of Program to calculate bonus, commission and gross salary as per description formula is from Los Angeles, United States.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!