Question: Use C++ and Visual Studio Write a program called output_LastNameFirstName.cpp that contains Three employees in a company are up for a special pay increase. You

Use C++ and Visual Studio
Write a program called output_LastNameFirstName.cpp that contains Three employees in a company are up for a special pay increase. You are given a file call data.txt, with the following data: Miller Andrew 65789.87 5 Green Sheila 75892.56 6 Sethi Amit 74900.506 1 You must use a loop Each input line consists of an employee's 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 6578987, and the pay increase is 5%. Write a program that reads data from the specified file and stores the output in the file Output_LastNameFirst.dat. For each employee, the data must be output in the following form: f the updatedSalary Pe ase and You much use the setprecision function that's part of the iomanip library Format the oldSalary with (.00) two decimal places. Format the PercentPaylncrease with (.0) one decimal places Format the updatedSalary, with (.000) three decimal places. Andrew Miller 65789.87 Sheila Green 75892.56 Amit Sethi 5.0 6.0 1.0 69079.363 80446.114 75649.511 74900.51 Submit "screen shot" image and edited output LastNameFirstName.cpp file
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
