Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Three employees in a company are up for a special pay increase. You are given a file, say Ch3_Ex5Data.txt , with the following data: Miller

Three employees in a company are up for a special pay increase. You are given a file, say Ch3_Ex5Data.txt, with the following data:

Miller Andrew 65789.87 5 Green Sheila 75892.56 6 Sethi Amit 74900.50 6.1

Each input line consists of an employees last name, first name, current salary, and percent pay increase.

For example, in the first input line, the last name of the employee is Miller, the first name is Andrew, the current salary is 65789.87, and the pay increase is 5%.

Instructions

Write a program that reads data from a file specified by the user at runtime (i.e. your program should accept the filename as user input) and stores the output in the file Ch3_Ex5Output.dat. To test your program, use the Ch3_Ex5Data.txt file.

Your program will not pass all checks if it does not accept a filename as input from the user.

For each employee, the data must be output in the following form: firstName lastName updatedSalary.

Format the output of decimal numbers to two decimal places.

Since your program handles currency, make sure to use a data type that can store decimals.

Miller Andrew 65789.87 5

Green Sheila 75892.56 6

Sethi Amit 74900.50 6.1

THIS IS WHAT I PUT BUT IT WONT WORK BECAUSE IT WONT TAKE INPUT OR OUTPUT AND I HAVE NO IDEA WHY.

// Including required headerfiles #include #include #include using namespace std; // main function int main(){ // Declaring the required variables string firstName, lastName; double salary, payIncrease; // File objects to read the file and write to file ifstream infile("SalaryData.txt"); ofstream outfile("SalaryOutput.dat"); // using while loop to read each data from the file while(infile >> lastName >> firstName >> salary >> payIncrease){ // Calculating the updatedSalary double updatedSalary = salary + (salary * (payIncrease/100)); outfile << fixed << setprecision(2); // Writing the data to the file outfile << firstName << " " << lastName << " " << updatedSalary << endl; } // Closing the file infile.close(SalaryData.txt); outfile.close(SalaryOutput.dat);

}

IT SAYS THAT I AM MISSING THE ONES BELOW.

.*Andrew\sMiller\s69079.36.*

.*Sheila\sGreen\s80446.11.*

.*Amit\sSethi\s79469.43.*

.*Robert\sParker\s13333.32.*

.*Harry\sLongabaugh\s100740.74.*

.*Etna\sPlace\s79469.43.*

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions