c programming
HIT365 C Programming
Assignment 1
This assignment is worth 15% of the total unit. Marks are given for clarity, presentation,
accuracy and also concise and efficient programs. This is an individual assignment. If
you found guilty of plagiarism, a failure grade will be awarded. The due date of this assignment is 26th April 2020. Please submit your answers in two files
( o n e i s a *.pdf file containing a pseudocode and a flow chart, and another is a *.c file
containing a c program) using Learnline (in the “Submit Here” tab). Late submissions
incur a 10% penalty per day. Make sure comments are included in your programs so that the marker can understand your program. Make sure your program can run in Microsoft Visual
Studio 2017 available from VMware Horizon if you are using another c compiler. Marks
will be deduced if your program cannot run in Microsoft Visual Studio 2017. Factory A pays its employees differently depending on his/her position within the
organization.
Managers receive a fixed weekly salary.
Hourly workers receive a fixed hourly wage for up to the first 40 hours they work and
remaining hours are paid 1.5 times their hourly wage i.e. for overtime hour work.
Commission workers receive a basic salary of $250 plus 5.7% of their gross weekly
sales for Item A, 6.4% of their gross weekly sales for Item B and 7.2% of their gross
weekly sales for Item C.
Pieceworkers receive a fixed amount of money for each of the items they produce -
each pieceworker in Factory A works on a maximum of three types of items. Item 1
pays $22.50 per item, Item 2 pays $24.50 per item and Item 3 pays $26.00 per item.
Write a program to assist the payroll secretary in computing the weekly pay for each
employee. The number of employees varies each week. Each type of employee has its own
pay code: Managers have paycode 1, hourly workers have paycode 2, commission workers
have paycode 3 and pieceworkers have paycode 4.
The program must prompt the payroll clerk to enter the appropriate information requires to
calculate each employee’s weekly pay based on that employee’s paycode. A summary of
total employees and total amount paid (sorted for each position) must be displayed at the
end.
Note that when the payroll clerk enters any inappropriate data (for example, entered 6 or a
character as the paycode), the program should display an error message i.e. any potential
problems should be addressed in your code to avoid any fatal errors. You can assume the user
only enters one number or character at one time.
For this assignment, you are required to:
1. Formulate the algorithm using pseudocode. 2. Draw a flow chart. 3. Write a working C program.
Below are some examples of the program output: