Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

C++ Program Sructured Data Multipurpose Payroll Write a program that calculates

ID: 3632534 • Letter: C

Question

C++ Program
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"

************************************************************************

Comment Please!

Include For loop, Do statement, if else statement.
#include <iostream>

#include <iomanip>

using namespace std;

struct        {

Explanation / Answer

#include #include #include using namespace std; struct Hourly {double hoursWorked; double hourlyRate; }; struct Salaried {double salary; double bonus; }; union PayPackage {Hourly h; Salaried s; }; int main() {PayPackage pay; char choice; double salary; bool error; cout
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote