Three employees in a company are up for a special pay increase. You are given a file,SalaryData.txtwith 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 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 65789.87, and the pay increase is 5%. Write a program that reads data from the specified file and stores the output in the file SalaryOut.txt. For each employee, the data must be output in the following form: firstName lasName updatedSalary. Format the output of decimal numbersto two decimal places. C++
Three employees in a company are up for a special pay increase. You are given a file,SalaryData.txtwith 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 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 65789.87, and the pay increase is 5%. Write a program that reads data from the specified file and stores the output in the file SalaryOut.txt. For each employee, the data must be output in the following form: firstName lasName updatedSalary. Format the output of decimal numbersto two decimal places.
C++
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 3 images