C++ Solve and build the program below and submit a \"screen shot\" image of the
ID: 3607707 • Letter: C
Question
C++
Solve and build the program below and submit a "screen shot" image of the result along with your edited source code (cpp file).
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 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 Output_LastNameFirst.dat. For each employee, the data must be output in the following form: firstName lastName oldSalary PercentPayIncrease and the updatedSalary.
You much use the setprecision() function that’s part of the iomanip library.
Format the oldSalary with of decimal numbers to (.00) two decimal places.
Format the PercentPayIncrease with of decimal numbers to (.0) one decimal places.
Format the updatedSalary of decimal numbers to (.000) three decimal places.
Please provide "screen shot" image and edited output_LastNameFirstName.cpp file.
Andrew Miller 65789.87 Sheila Green 75892.56 Amit Sethi 74900.51 5.0 6.0 1.075649.511 69079.363 80446.114Explanation / Answer
#include<iostream>
#include<iomanip>
#include<fstream>
#include<string>
using namespace std;
int main() {
ifstream inFile; // input file
char *path = "C:\Users\Deepak\Documents\MATLAB\data.txt"; // write your input file path
ofstream outfile;
char *out_path = "C:\Users\Deepak\Documents\MATLAB\output.dat"; // output file path
outfile.open(out_path);
inFile.open(path);
string lastName;
string firstName;
double current_salary;
double percent_pay_increase;
while(inFile >> lastName >> firstName >> current_salary >> percent_pay_increase) {
double increase = current_salary * percent_pay_increase /100.0; // increase in salary
double updated_salary = current_salary + increase; // new salary
// to print in console with given precision
cout << firstName << " " << lastName << " " << fixed <<setprecision(2) <<
current_salary << " "<< fixed <<setprecision(1) << percent_pay_increase <<" "<<
fixed <<setprecision(3)<<updated_salary<< endl;
// write in file
outfile << firstName << " " << lastName << " " << fixed <<setprecision(2) <<
current_salary << " "<< fixed <<setprecision(1) << percent_pay_increase <<" "<<
fixed <<setprecision(3)<<updated_salary<< endl;
}
inFile.close();
outfile.close();
return 0;
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.