Problem Solving with C++ (9th Edition)
Problem Solving with C++ (9th Edition)
9th Edition
ISBN: 9780133591743
Author: Walter Savitch
Publisher: PEARSON
bartleby

Videos

Textbook Question
Book Icon
Chapter 6.2, Problem 18STE

Here is a code segment that reads input from infile.dat and sends output to outfile.dat. What changes are necessary to make the output go to the screen? (The input is still to come from infile.dat.)

  //Problem for Self Test. Copies three int numbers

  //between files. #include <fstream> int main( )

  {

  using namespace std;

  ifstream inStream;

  ofstream outStream;

  inStream.open(“infile.dat”);

  outStream.open(“outfile.dat”);

  int first, second, third;

  inStream >> first >> second >> third;

  outStream << “The sum of the first 3” << endl

  << “numbers in infile.dat is ”<< endl

  << (first + second + third) << endl;

  inStream.close();

  outStream.close();

  return 0;

  }

Blurred answer
Students have asked these similar questions
This is phython not Java Lab:  Write a file copying program.  The program asks for the name of the file to copy from (source file) and the name of the file to copy to (destination file).  The program opens the source file for reading and the destination file for writing.  As the program reads each line from the source file and it writes the line to the destination file.  When every line from the source file has been written to the destination file, it close both files and print “Copy is successful.” In the sample run, “add.py” is the source file and “add-copy.py” is the destination file.  Note that both “add-copy.py” is identical to “add.py” because “add-copy.py” is a copy of “add.py”. Sample run: Enter file to copy from: add.py Enter file to copy to  : add-copy.py Copy is successful.   Source file: add.py print("This program adds two numbers")   a = int(input("Enter first number: ")) b = int(input("Enter second number: "))   print(f"{a} + {b} = {a+b}")   Destination…
Consider the following code segment: done = False while not done : try : filename = input("Enter the file name: ") inFile = open (filename, "r") except IOError : print ("Error: File not found.") It is supposed to keep on prompting the user for file names until the user provides the name of a file that can be opened successfully. What line of code should be placed in the blank to achieve this goal? Select one: done = inFile done = True done = not inFile done = False
#include #includesstdlib.h> int main(void){ int number , reverse = 0, digit , temp; FILE *infile, *outfile; int status; //open the input file and check if an error occurred infile = fopen( "numbers.txt" , "r" ); //open the input file if(infile == NULL){ printf("Error: File \"numbers.txt\" not found!\n"); exit (1); //open the output file and check if error occurred outfile = fopen( "Report.txt" , "w" ); if(outfile == NULL){ printf("Error: File \"Report.txt\" can not be created!\n"); exit (1); status = fscanf(infile , "%d" , &number); //read first number from the file /To read all the numbers in the file while(status != EOF){ printf("%d is read from the file\n" , number); fprintf(outfile , "%8d" , number); //compute the reverse of the number temp = number ; reverse = 0; while(temp != 0){ digit = temp % 10; reverse = reverse * 10 + digit; temp = temp/10; printf("The reverse is: %d \n", reverse); fprintf(outfile , "%8d" , reverse); //check whether the number is palindrome if(number ==…

Chapter 6 Solutions

Problem Solving with C++ (9th Edition)

Ch. 6.1 - Prob. 11STECh. 6.2 - Prob. 12STECh. 6.2 - Prob. 13STECh. 6.2 - Prob. 14STECh. 6.2 - What output will be sent to the stuff.dat when the...Ch. 6.2 - Prob. 16STECh. 6.2 - In formatting output, the following flag constants...Ch. 6.2 - Here is a code segment that reads input from...Ch. 6.2 - Prob. 19STECh. 6.2 - Write the definition for a void function called...Ch. 6.2 - (This exercise is for those who have studied the...Ch. 6.3 - Suppose c is a variable of type char. What is the...Ch. 6.3 - Suppose c is a variable of type char. What is the...Ch. 6.3 - Prob. 24STECh. 6.3 - Consider the following code (and assume that it is...Ch. 6.3 - Consider the following code (and assume that it is...Ch. 6.3 - Suppose that the program described in Self-Test...Ch. 6.3 - Consider the following code (and assume that it is...Ch. 6.3 - Prob. 29STECh. 6.3 - Define a function called copyLine that takes one...Ch. 6.3 - Prob. 31STECh. 6.3 - (This exercise is for those who have studied the...Ch. 6.3 - (This exercise is for those who have studied the...Ch. 6.3 - Suppose ins is a file input stream that has been...Ch. 6.3 - Write the definition for a void function called...Ch. 6.3 - Consider the following code (and assume that it is...Ch. 6.3 - Write some C++ code that will read a line of text...Ch. 6 - Write a program that will search a file of numbers...Ch. 6 - Write a program that takes its input from a file...Ch. 6 - a. Compute the median of a data file. The median...Ch. 6 - Write a program that takes its input from a file...Ch. 6 - Write a program that gives and takes advice on...Ch. 6 - Write a program that reads text from one file and...Ch. 6 - Prob. 7PCh. 6 - Write a program to generate personalized junk...Ch. 6 - Write a program to compute numeric grades for a...Ch. 6 - Enhance the program you wrote for Programming...Ch. 6 - Prob. 4PPCh. 6 - Write a program that will correct a C++ program...Ch. 6 - Write a program that allows the user to type in...Ch. 6 - This project is the same as Programming Project 6,...Ch. 6 - This program numbers the lines found in a text...Ch. 6 - Write a program that computes all of the following...Ch. 6 - The text file babynames2012.txt, which is included...Ch. 6 - To complete this problem you must have a computer...Ch. 6 - Write a program that prompts the user to input the...Ch. 6 - The following is an old word puzzle: Name a common...

Additional Engineering Textbook Solutions

Find more solutions based on key concepts
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr
C - File I/O; Author: Tutorials Point (India) Ltd.;https://www.youtube.com/watch?v=cEfuwpbGi1k;License: Standard YouTube License, CC-BY
file handling functions in c | fprintf, fscanf, fread, fwrite |; Author: Education 4u;https://www.youtube.com/watch?v=aqeXS1bJihA;License: Standard Youtube License