C++ Program Comment Please! Sructured Data Multipurpose Payroll Write a program
ID: 3632457 • Letter: C
Question
C++ Program
Comment Please!
Sructured Data
Multipurpose Payroll
Write a program that calculates pay for either an hourly paid worker or salaried worker. Hourly paid workers are paid their hourly pay rate times the number of hours worked. Salaried workers are paid their regular salary plus any bonus they may have earned. The program should declare two structures for the following data:
Hourly Paid:
Hourly Worked
Hourly Rate
Salaried:
Salary
Bonus
The program should also delcare a union with two members. Each member should be a structure variable: one for the hourly paid worker and another for the salaried worker.
The program should ask the user whether he or she is calculating the pay for an hourly paid worker or a salaried worker. Regardless of which the user selects, the appropriate members of the union will be used to store the data that will be used to calculate the pay.
Input Validation: Do not accept negative members. Do not accept values greater than 80 for HoursWorked.
*************************************************************************************************
Don't Include #include <cctype>, Don't include #include "SalariedEmployee.h"
Don't include #include "HourlyEmployee.h"
#include <iostream>
#include <iomanip>
using namespace std;
struct {
Explanation / Answer
code is : #include /Header files/ #include using namespace std; struct Hourly /structures/ {double hoursWorked; double hourlyRate; }; struct Salaried /structures/ {double salary; double bonus; }; union PayPackage /structures/ {Hourly h; Salaried s; }; int main() /main starts/ {PayPackage pay; char choice; double salary; bool error; coutRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.