Consider the following incomplete C++
#include <iostream>
int main()
{
…
}
Write a statement that includes the header files fstream, string, and iomanip in this program.
Write statements that declare inFile to be an ifstream variable and outFile to be an ofstream variable.
The program will read data from the file inData.txt and write output to the file outData.txt. Write statements to open both of these files, associate inFile with inData.txt, and associate outFile with outData.txt.
Suppose that the file inData.txt contains the following data:
Giselle Robinson Accounting
5600 5 30
450 9
75 1.5
The first line contains a person's first name, last name, and the department the person works in. In the second line, the first number represents the monthly gross salary, the bonus (as a percent), and the taxes (as a percent). The third line contains the distance traveled and the traveling time. The fourth line contains the number of coffee cups sold and the cost of each coffee cup. Write statements so that after the program executes, the contents of the file outData.txt are as shown below. If necessary, declare additional variables. Your statements should be general enough so that if the content of the input file changes and the program is run again (without editing and recompiling), it outputs the appropriate results.
Name: Giselle Robinson, Department: Accounting
Monthly Gross Salary: $5600.00, Monthly Bonus: 5.00, Taxes: 30.000
Paycheck: $4116.00
Distance Traveled 450.00 miles, Traveling Time: 9.00 hours
Average Speed: 50.00 miles per hour
Number of coffee Cups Sold: 75, Cost: $1.50 per cup
Sales Amount = $112.50
Write statements that close the input and output files.
Write a C++ program that tests the statements in parts a through e.
Trending nowThis is a popular solution!
Chapter 3 Solutions
C++ Programming: From Problem Analysis to Program Design
- Write a C++ program that asks the user for a file name and a word for which to search. The program should search the file for every occurrence of the word. When the word is found, the line it contains should be displayed. After all of the occurrences have been found, the program should display the number of times the word was found in the file.arrow_forwardIn c++ write a code that tells a user to enter a filename and read that text file line by line.arrow_forwardInstructions Consider the following incomplete C++ program: #include <iostream> int main(){ ...} Write statements that include the header files fstream, string, and iomanip in this program. Write statements that declare inFile to be an ifstream variable and outFile to be an ofstream variable. The program will read data from the file inData.txt and write output to the file outData.txt. Write statements to: Open both of these files Associate inFile with inData.txt Associate outFile with outData.txt Suppose that the file inData.txt, data set 1, contains the following data: Giselle Robinson Accounting 5600 5 30 450 9 75 1.5 The first line contains a person’s first name, last name, and the department the person works in. In the second line, the first number represents the monthly gross salary, the bonus (as a percent), and the taxes (as a percent). The third line contains the distance traveled and the traveling time. The fourth line contains the number of coffee cups sold…arrow_forward
- This is a C++ program, to be done in a .cpp file Problem Statement: Write rules for the user on how to play the game in a text file. Then, create a program that will read in the text file and display it out to the user. LCR Game Rules: The Dice● There are three dice rolled each turn. Each die has the letters L, C, and R on it along with dots on the remaining three sides. These dice determine where the player’s chips will go.○ For each L, the player must pass one chip to the player sitting to the left.○ For each R, the player must pass one chip to the player sitting to the right.○ For each C, the player must place one chip into the center pot and those chips are now out of play.○ Dots are neutral and require no action to be taken for that die.The Chips● Each player will start with three chips.● If a player only has one chip, he/she rolls only one die. If a player has two chips left, he/she rolls two dice. Once a player is out of chips, he/she is still in the game (as he/she may get…arrow_forwardIn C++arrow_forwardSUBJECT NAME IS C++: WAP to read 4 student objects and write them into a file, then print total number of student number in file. After that read an integer and print details of student stored at this number in the file using random access and file manipulatorsarrow_forward
- C++ Create a program to open a text file and read in multiple lines of data. Use a regular expression to see if each line contains: Your First Name, Your Last Name, Your First Name or Last Name (anywhere in the text) Your First Name and Last Name (anywhere in the text) Your First Name followed by your Last Name (can contain text between first and last - such as middle name or middle initial).arrow_forwardC++ Write a code fragment to: declare two file streams, infile and outfile Open them and connect them to the files file1.dat and file2.dat read an int from file1.dat and print it to file2.dat This should only be a half dozen lines of code.arrow_forwardDevelop a program in C++ that will create a filename NAMES.txt containing 20 string name. The program will determine if the given string name is in the file, if found the program will display “STRING FOUND” if not the program will display “STRING NOT FOUND”. *Using Iostream* With Screenshotarrow_forward
- (Data processing) Write a C++ program that reads the file created in Exercise 4, permits the user to change the hourly wage or years for any employee, and creates a new updated file.arrow_forwardComputer Science In C++ can someone make a code where it reads a txt file and displays the text file that has pending shipping orders. I would also like the code to be able to modify the text file in terms of canceling shipping orders or view shipping orders.arrow_forwardC++ Create a standalone program that performs the tasks below. Start by solving task one and complete that task before starting task 2.Your program should read the files mentioned from the "current working directory" All files are in text format with "\ n" at the end of the line.If you wish, you can use pipes and redirects to solve the file reading and printing instead of std :: ifstream and std :: ofstream.Comment on it in the codealong with examples of how the program is used. The file names.txt contains names and social security numbers in the following form. The file contains several people: FirstName LastNameYYMMDDNNNNStreetName StreetNumber , Postcode , CityName Your task is to convert the input data into the form:Surname, First nameAddressLine (StreetName StreetNumber , Postcode , CityName)(string line) The output should indicate whether the person is a man or a woman. For example, for a man it may say:Last name, First name [M]AddressLine (StreetName StreetNumber ,…arrow_forward
- C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology Ptr