As you see in pp. 638-640, structures are useful to store related data together that defined with different types. Here you are asked to modify the Payroll program that we have been working on previous labs. You are asked to write a program using structures and pointers as shown in the following, and store the in an output file. You may see "Appending a Node to the List" in pp. 1126-1128, and pp. 530-536. #include using namespace std; struct Employee_t { string Fname, Lname; int NofHours; float Hourly Rate; char Major (Computer, Security); float Amount; Employee *next }; Employee *head; void print-record (struct *); //use setw() to align fields properly; First Name Komp Scien Last Name ESU CPSC Your Name Add 7 more of your own here... Create a file, Employee.txt. int main() { # of Hours 30 } 40 40 for (int count = 0; count < NumOfEmp; count++) { print each line on your screen; //Allocate a new node and store. infile >> newNode->fname; infile >> newNode->NofHours; newNode-> = nullptr; print-record(newNode); return 0; Hourly Rate 40 30 35 Amount Comp Sci Y Y Y 2200 2200 3400 Comp Sec N N Y

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18SA
icon
Related questions
Question
Recommended to use the following to read/print 10 lines;
As you see in pp. 638-640, structures are useful to store related data together that defined with different
types. Here you are asked to modify the Payroll program that we have been working on previous labs.
You are asked to write a program using structures and pointers as shown in the following, and store the
in an output file. You may see "Appending a Node to the List" in pp. 1126-1128, and pp. 530-536.
#include <bits/stdc++.h>
using namespace std;
struct Employee_t
{
string Fname, Lname;
int NofHours;
float HourlyRate;
char Major (Computer, Security);
float Amount;
Employee *next
};
Employee *head;
void print-record (struct *);
//use setw() to align fields properly;
Last Name
ESU
CPSC
Your
Name
First Name
Komp
Scien
# of Hours
30
}
40
40
Add 7 more of your own here... Create a file, Employee.txt.
int main()
{
for (int count = 0; count NumOfEmp; count++)
{
print each line on your screen;
//Allocate a new node and store.
infile >> newNode->fname;
infile >> newNode->NofHours;
newNode-> = nullptr;
print-record(newNode);
return 0;
Hourly Rate
40
30
35
Amount Comp Sci
2200
Y
2200
Y
3400
Y
Comp Sec
N
N
Y
Transcribed Image Text:As you see in pp. 638-640, structures are useful to store related data together that defined with different types. Here you are asked to modify the Payroll program that we have been working on previous labs. You are asked to write a program using structures and pointers as shown in the following, and store the in an output file. You may see "Appending a Node to the List" in pp. 1126-1128, and pp. 530-536. #include <bits/stdc++.h> using namespace std; struct Employee_t { string Fname, Lname; int NofHours; float HourlyRate; char Major (Computer, Security); float Amount; Employee *next }; Employee *head; void print-record (struct *); //use setw() to align fields properly; Last Name ESU CPSC Your Name First Name Komp Scien # of Hours 30 } 40 40 Add 7 more of your own here... Create a file, Employee.txt. int main() { for (int count = 0; count NumOfEmp; count++) { print each line on your screen; //Allocate a new node and store. infile >> newNode->fname; infile >> newNode->NofHours; newNode-> = nullptr; print-record(newNode); return 0; Hourly Rate 40 30 35 Amount Comp Sci 2200 Y 2200 Y 3400 Y Comp Sec N N Y
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 5 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

One last  implementation, can you have the user implement their own names and employee info (like first and last name, # of hours worked, hourly rate, and their major) and it computes it for them and prints it out?

Solution
Bartleby Expert
SEE SOLUTION
Follow-up Question

Can you make it so it computes the amount (# of hours x hourly rate) and not put the amount In the txt?

Also if the employee is a computer sci or a cyber sec major then add 1000 and if they are both add 2000 to their amount.

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Linked List Representation
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning