Your company has accepted a request to write a program that will calculate the payroll for a company that pays its employees every week. The company also wants to be able to store the report in a text file that will be opened by pressing a button in the program. Your supervisor has assigned you to write the program.
The program must contain the following:
A WeeklyEmployee that contains:
Properties:
Constructors
Gross pay – (exemption amount * number of exemptions) = Taxable income
((Taxable Income – subtract) * %) + Add = Income Tax
FICA tax
Gross pay * FICA rate = FICA tax
Modifiers
A Main Form:
The program should follow the best programming practices (form centered on the screen, able to minimize but not maximize, form title, accept button, cancel, etc . . .)
Use the camel-case naming convention for all of the variables you create.
Put your name and the date as a comment in your source file(s).
Copy the following two questions and your answers as comments at the bottom of your code.
/*
What concepts did you find challenging about this program? (Please be specific)
What did you learn in this program? (Please be specific)
*/
When you have completed your assignment and before submitting your file:
Test and run your application
The program should follow the best programming practices (form centered on the screen, able to minimize but not maximize, form title, accept button, cancel, etc . . .)