Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Suppose that age is an int variable and name is a string variable. The input is: a. 41Terry Wilson b. 41 Terry Wilson c.

1. Suppose that age is an int variable and name is a string variable. The input is:

a. 41Terry Wilson

b. 41 Terry Wilson

c. 41

Terry Wilson

In each case, what are the values of age and name after the following input statements execute:

cin >> age;

getline(cin, name);

2. The following program is supposed to read two numbers from a file named input.dat and write the sum of the numbers to a file named output.dat However, it fails to do so. Rewrite the program so that it accomplishes what it is intended to do. Also, write statements to close the files.

#include

#include

using namespace std;

int main()

{

int number1, number2;

ifstream infile;

outfile.open("output.dat");

infile >> number1 >> number2;

outfile << "Sum = " << number1 + number2 << endl;

return 0;

}

3. Suppose that you have the following statements:

ofstream outfile;

double distance = 100.0; //miles

double speed = 50.0; //miles per hour

double travelTime; //hours to travel using distant and speed

Write C++ statements to do the following:

a. Open the file travel.dat using the variable outfile.

b. Write the statement to format your output to two decimal places in fixed form.

c. Write the values of the variables distance and speed on their own respective lines in the file travel.dat.

d. Calculate and write the travelTime in the file travel.dat.

e. What header files are required to make (a) to (d) compile?

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

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

4th Edition

0805360476, 978-0805360479

More Books

Students also viewed these Databases questions

Question

he distance between the two parallel rows of trees

Answered: 1 week ago