
C++ for Engineers and Scientists
4th Edition
ISBN: 9781133187844
Author: Bronson, Gary J.
Publisher: Course Technology Ptr
expand_more
expand_more
format_list_bulleted
Question
Chapter 8, Problem 1PP
(a)
Program Plan Intro
- Include library files for various operations.
- Declare object of ofstream.
- Create a file named “pay.dat” to write contents.
- Use if statement with fail() method to check that the entered file name is available or not.
- Read data from the program and write data to the file.
- int main() function is used to perform all the task.
- Display the calculated results to the user.
Program Description: The main purpose of this program is to create the “pay.dat” file and to store the given data in the file.
(a)
Expert Solution

Explanation of Solution
Program:
//including necessary header files #include<iostream> #include<fstream> #include<cstdlib> #include<string> #include<iomanip> usingnamespace std; int main() { string filename = "pay.dat"; // ofstream object ofstream outFile; // open file outFile.open(filename.c_str()); // check if file is opened successfully if (outFile.fail()) { // display message cout <<"The file was not successfully opened"<<endl; exit(1); } // Send data to be written to the file using the outFile <<"Callaway, G."<<"\t"<<16.00<<" \t"<<40<<endl; outFile <<"Hanson, P."<<" \t"<<15.00<<" \t"<<48<<endl; outFile <<"Lasard, D. "<<" \t"<<16.50<<"\t"<<35<<endl; outFile <<"Stillman, W."<<"\t"<<18.00<<" \t"<<50<<endl; // close file outFile.close(); cout<<"File is created successfully!!!!!"; }
Sample output:
File- pay.dat
(b)
Program Plan Intro
Program Plan:
- Include library files for various operations.
- Declare an object of ifstream.
- Create a statement to open the given file “pay.dat”.
- Use if statement with fail() method to check that the entered file name is available or not.
- Use while loop to read the file.
- Calculate Regular pay, by using the below given formula:
- Calculate Overtime pay, by using the below given formula:
- int main() function is used to perform all the task.
- Display the calculated results to the user.
Program Description: The main purpose of this program is to modify the program code given in part (a), so that the program can accept data from the given file “pay.dat” and display the name, rate, hours, regular payment, overtime, gross pay, totals of the regular, overtime, and gross pay on the console.
(b)
Expert Solution

Explanation of Solution
Program:
//including necessary header files #include<iostream> #include<fstream> #include<cstdlib> #include<string> #include<iomanip> usingnamespace std; //main method int main() { //declaring variables string filename = "pay.dat"; string first, second; int hours; double rates, regPay, overPay=0, total=0, totalOvertym=0, totalGross=0; // ifstream object ifstream in; // open file in.open(filename.c_str()); // check if file is opened successfully if (in.fail()) { // display message cout <<"The file was not successfully opened"<<endl; exit(1); } in>>first>>second>>rates>>hours; cout<<"Name"<<"\t\tRate"<<"\t Hours"<<"\tRegular"<<"\tOvertime"<<"\t GrossPay"<<endl; //while loop while(in.good()) { //if working hours are 40 or less if(hours<=40) { //calculating pay regPay=hours*rates; overPay=0; } //if pay is greater than 40 if(hours>40) { //calculating pay regPay=40* rates; overPay=(hours-40)*(rates*1.5); } //displaying message to the user cout<<first<<" "<<second<<"\t"<<rates<<"\t"<<hours<<"\t"<<regPay <<"\t"<<overPay<<"\t\t"<<(regPay+overPay)<<endl; //calculating total amount total=total+regPay; totalOvertym=totalOvertym+overPay; totalGross=totalGross+regPay+overPay; //reading data from the file in>>first>>second>>rates>>hours; } //displaying calculated results to the user cout<<"______________________________________________________________"<<endl; cout<<"Total \t\t\t\t"<<total<<"\t"<<totalOvertym<<"\t\t"<<totalGross; // close file in.close(); }//end of main method
Sample output:
Want to see more full solutions like this?
Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
Please no AI! Or if you do use AI, Check the work please! Thank you!
(Dynamic Programming.) Recall the problem presented in Assign-
ment 3 where given a list L of n ordered integers you're tasked with removing m
of them such that the distance between the closest two remaining integers is maxi-
mized. See Assignment 1 for further clarification and examples. As it turns out there
is no (known) greedy algorithm to solve this problem. However, there is a dynamic
programming solution. Devise a dynamic programming solution which determines
the maximum distance between the closest two points after removing m numbers.
Note, it doesn't need to return the resulting list itself.
Hint 1: Your sub-problems should be of the form S(i, j), where S(i, j) returns
the maximum distance of the closest two numbers when only considering removing
j of the first i numbers in L. As an example if L [3, 4, 6, 8, 9, 12, 13, 15], then
S(4, 1) = 2, since the closest two values of L' = [3,4,6,8] are 6 and 8 after removing
4 (note, 8-6 =
= 2).
=
Hint 2: For the sub-problem S(i, j),…
(Dynamic Programming.) A group of friends is visiting a number
of attractions located along a highway, starting at kilometre 0, placed at distances
ɑ1 < A2 < ···
Chapter 8 Solutions
C++ for Engineers and Scientists
Ch. 8.1 - Prob. 1ECh. 8.1 - (Practice) a. Write a set of two statements...Ch. 8.1 - Prob. 3ECh. 8.1 - Prob. 4ECh. 8.1 - Prob. 5ECh. 8.1 - Prob. 8ECh. 8.1 - Prob. 9ECh. 8.1 - Prob. 10ECh. 8.2 - Prob. 1ECh. 8.2 - (Practice and modify) a. Enter and run Program...
Ch. 8.2 - (Practice and modify) a. Write a C++ program that...Ch. 8.2 - (Practice) Determine the OS command or procedure...Ch. 8.2 - Prob. 5ECh. 8.2 - (Data processing) a. Write a C++ program that...Ch. 8.2 - Prob. 7ECh. 8.2 - Prob. 8ECh. 8.2 - Prob. 9ECh. 8.3 - Prob. 1ECh. 8.3 - Prob. 2ECh. 8.3 - Prob. 3ECh. 8.3 - Prob. 4ECh. 8.3 - Prob. 5ECh. 8.3 - Prob. 6ECh. 8.4 - Prob. 1ECh. 8.4 - Prob. 2ECh. 8.4 - Prob. 3ECh. 8.4 - Prob. 4ECh. 8.5 - (Practice) Write a C++ program to create the...Ch. 8.5 - Prob. 2ECh. 8.5 - Prob. 3ECh. 8.5 - Prob. 4ECh. 8.5 - Prob. 5ECh. 8 - Prob. 1PPCh. 8 - (Data processing) a. Store the following data in a...Ch. 8 - (Data processing) Write a C++ program that allows...Ch. 8 - (Data processing) Write a C++ program that permits...Ch. 8 - (Data processing) Write a C++ program that reads...Ch. 8 - (Data processing) Write a C++ program that reads...Ch. 8 - Prob. 7PPCh. 8 - (Data processing) A bank’s customer records are to...Ch. 8 - (Inventory) Create an ASCII file with the...
Knowledge Booster
Similar questions
- (Greedy Algorithms) Describe an efficient algorithm that, given a set {x1, x2, . . ., xn} of points on the real line, determines the smallest set of unit-length closed intervals that contains all of the given points. Argue that your algorithm is correct.arrow_forwardWhat does the value of the top variable indicate in this ArrayStack implementation? What will happen if we call pop on this stack? What value will be returned, and what changes will occur in the array and the top variable? 3. If we push the value "echo" onto the stack, where will it be stored in the array, and what will be the new value of top? 4. Explain why index 0 contains the string "alpha" even though top is currently 3. 5. What would the state of the stack look like (values in the array and value of top) after two consecutive pop 0 operations?arrow_forwardPlease solve and show all work. Suppose there are four routers between a source and a destination hosts. Ignoring fragmentation, an IP datagram sent from source to destination will travel over how many interfaces? How many forwarding tables will be indexed to move the datagram from the source to the destination?arrow_forward
- Please solve and show all work. When a large datagram is fragmented into multiple smaller datagrams, where are these smaller datagrams reassembled into a single large datagram?arrow_forwardPlease solve and show all steps. True or false? Consider congestion control in TCP. When the timer expires at the sender, the value of ssthresh is set to one-half of the last congestion window.arrow_forwardPlease solve and show all work. What are the purposes of the SNMP GetRequest and SetRequest messages?arrow_forward
- Please solve and show all steps. Three types of switching fabrics are discussed in our course. List and briefly describe each type. Which, if any, can send multiple packets across the fabric in parallel?arrow_forwardPlease solve and show steps. List the four broad classes of services that a transport protocol can provide. For each of the service classes, indicate if either UDP or TCP (or both) provides such a service.arrow_forwardPlease solve and show all work. What is the advantage of web caches, and how does it work?arrow_forward
- Please solve and show steps. Consider a DASH system for which there are N video versions (at N different rates and qualities) and N audio versions (at N different rates and qualities). Suppose we want to allow the player to choose at any time any of the N video versions and any of the N audio versions. If we create files so that the audio is mixed in with its matched-rate video and the server sends only one media stream at a given time, how many files will the server need to store (each with a different URL)? If the server instead sends the audio and video streams separately and has the client synchronize the streams, how many files will the server need to store?arrow_forwardPlease solve and show all work. Recall that TCP can be enhanced with SSL to provide process-to-process security services, including encryption. Does SSL operate at the transport layer or the application layer?arrow_forwardPlease solve and show all work. Compute the checksum of the words 1011 1001, 1001 1110, and 0111 1011. Show all work.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology PtrC++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage Learning

C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr

C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning