Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

in C++

Three employees in a company are up for a special pay increase. You are given a file, say SalaryData.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%. Write a program that reads data from the specified file and stores the output in the file SalaryOutput.dat. 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.

To solve this problem, you must create the input data file manually. To do this in CodeBlocks, go to the File menu and select New and then Empty File. A popup will ask if you want to add this file to the project. When you say yes, you will have to name the file. It is best to put a .txt extension on the file name. This type of file is called a flat file. A flat file is similar to a spread sheet in that all the fields (columns) contain the same type of information and the records (rows) contain different data values.

please have

source code with

The name of your program as a comment at the top of the file

Your IPO chart incorporated as comments after the name of the file

At test plan or a screen shot of the results of your testing

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Practical Oracle8I Building Efficient Databases

Authors: Jonathan Lewis

1st Edition

0201715848, 978-0201715842

More Books

Students also viewed these Databases questions

Question

What is Change Control and how does it operate?

Answered: 1 week ago

Question

How do Data Requirements relate to Functional Requirements?

Answered: 1 week ago