A simple payroll system that I wrote using Pascal programming language.

I am currently accepting programming work inventory system, enrollment system, accounting system, payroll system, information system, website design and development using WordPress, IT projects, school and application development, programming projects, thesis, and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.My mobile number here in the Philippines is 09173084360. My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price. My personal website is http://www.jakerpomperada.comMy programming website is http://www.jakerpomperada.blogspot.comI am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.unlimitedbooksph.com/

Program Listing

(* Payroll_Program.Pas
   Author  : Jake Rodriguez Pomperada,MAED-IT, MIT
   Date    : July 18, 2020  Saturday    7:51 PM
   Email   : jakerpomperada@gmail.com
   Website : www.jakerpomperada.com and www.jakerpomperada.blogspot.com
*)

program Payroll_Program;
Uses Crt;

Var

 emp_name : string[100];
 rate_per_day : real;
 no_days_work : real;
 solve_salary : real;


begin
   Clrscr;
   rate_per_day := 0.00;  no_days_work := 0.00;  solve_salary := 0.00;
   Gotoxy(25,2);
   Writeln('Payroll Program in Pascal');
   Gotoxy(25,4);
   Write('Give Employees Name    :  ');
   Readln(emp_name);
   Gotoxy(25,6);
   Write('Number of Days Worked  :   ');
   Readln(no_days_work);
   Gotoxy(25,8);
   Write('Rate Per Day           : $ ');
   Readln(rate_per_day);

   solve_salary := (no_days_work * rate_per_day);

   Gotoxy(25,10);
   Write(emp_name ,' your salary is $ ',solve_salary:5:2);
   Gotoxy(25,12);
   Write('End of Program');
   Readln;
end.

Leave a Reply

Your email address will not be published. Required fields are marked *