Question
Using a structure, and creating three structure variables; write a program that will calculate the total pay for thirty (30) employees. (Ten for each structured
Using a structure, and creating three structure variables; write a program that will calculate the total pay for thirty (30) employees. (Ten for each structured variable.) Sort the list of employees by the employee ID in ascending order and display their respective information. Description DataType Members Employee IDs of INT employees_jd Hours Worked of DOUBLE hrworked_jd Pay Rate of DOUBLE payrate_jd Total Pay of Double total_pay_jd Structure name payroll Array Size administrative structure variable 10 office structure variable 10 field structure variable 10 Excluding the main function, your program should have four additional functions that will get the hours worked, and payrate, calculate the total pay, sort the data and display your output. Base pay should be calculated by multiplying the regular hours worked by pay rate. If a person has worked over forty (40)hours, total pay is calculated by an adding 10% of base pay for every five (5) hours over forty (40) to base pay. (ie a person working 50 hours with a total pay of $100 would have ((hours-40)/5)*(base pay*.1) + base pay. Note: _jd represents the initials of the programmer. Your function names should be named by replacing the initials jd with your first and last initials Read Input File Calculate Pay Sort Data Output Results Name of function get_jd calc_jd sort_jd prt_jd Properties of function Called from main Called from main Called from main Called from main Definition of Function Should pass hours worked and pay rate Should pass hours worked and pay rate and calculated total pay Sort data by student ID using the bubble or selection sort; passing all variables Should pass employee id, hours worked, pay rate and total pay. Then print the data.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started