Sunday, June 27, 2021

SIMPLE PAYROLL PROGRAM IN C

 

Machine Problem in C

Write and design a payroll program that will ask the user how many days an employee work in the company and then the salary rate per day. In addition, the program also will ask the user the SSS, PAG-IBIG, BIR and PHILHEALTH contributions. The payroll program will compute the gross salary, total deductions, and net salary and display the result on the screen.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website, kindly contact me also at my email address also. Thank you.

My email address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com

My mobile number here in the Philippines is 09173084360.








Program Listing

/* simple_payroll_program_in_c.c

   Author   : Jake Rodriguez Pomperada,BSCS,MAED-IT, MIT

   Date     : June 27, 2021  9:49 AM  Sunday

   Location : Bacolod City, Negros Occidental

   Tool     : Codeblocks

   Website  : http://www.jakerpomperada.com and http://www.jakerpomperada.blogpsot.com

   Email    : jakerpomperada@gmail.com */


#include <stdio.h>


int main()

{

   float days=0,rate=0.00,solve_gross=0.00;

   float sss=0.00,pag_ibig=0.00,bir=0.00;

   float philhealth=0.00,solve_net_salary=0.00;

   float total_deductions=0.00;


   system("COLOR F0");

   printf("\n\n");

   printf("\tSIMPLE PAYROLL PROGRAM IN C");

   printf("\n\n");

   printf("\tHow Many Days Work : ");

   scanf("%f",&days);

   printf("\n");

   printf("\tSalary Per Day     : PHP ");

   scanf("%f",&rate);

   printf("\n\n");


   /* Solving Gross Salary Here */


   solve_gross = (days * rate);


   printf("\tGross Salary            : PHP %.2f ",solve_gross);

   printf("\n\n");

   printf("\tSSS Contribution        : PHP ");

   scanf("%f", &sss);

   printf("\tPAG-IBIG Contribution   : PHP ");

   scanf("%f",&pag_ibig);

   printf("\tBIR Contribution        : PHP ");

   scanf("%f",&bir);

   printf("\tPHILHEALTH Contribution : PHP ");

   scanf("%f",&philhealth);


    /* Solving Total Deductions and Net Salary Here */


    total_deductions = (sss+pag_ibig+bir+philhealth);

    solve_net_salary = (solve_gross - total_deductions);


    printf("\n\n");

    printf("\tDisplay Payroll Results");

    printf("\n\n");

    printf("\tGross Salary     : PHP %.2f\n",solve_gross);

    printf("\tTotal Deductions : PHP %.2f\n",total_deductions);

    printf("\n\n");

    printf("\tNet Salary       : PHP %.2f",solve_net_salary);

  printf("\n\n\n");

    printf("\tEND OF PROGRAM");

    printf("\n\n");

    }


No comments:

Post a Comment