Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Nested Loops Lab3C.cpp Loops often have loops inside them. These are called nested loops. In this exercise you will finish a nested loop that reads

Nested Loops Lab3C.cpp

Loops often have loops inside them. These are called nested loops. In this exercise you will finish a nested loop that reads lines of numbers from a file and computes and prints out the sum of each line.

//C++ Lab3C.cpp

//1. [include required header files]//

using namespace std;

int main()

{

//[2. Declare required variables]

try

{

//3> put your file name & Open file as an input mode

ifstream Openfile(" );

//4> If file doesn't exist then throw error number

if(Openfile.good())

{

while( getline(Openfile, sLine)) //Outer While Loop Condition

{

cout << "The Contents of line sLine" << sLine << " ";

stringstream Str(sLine);

while (Str >> temp ) //Inner While Loop Condition

{

cout << "String ~to double" << temp;

}// Inner while Loop

} //Outer While Loop

Openfile.close();

//3> Catch the error number and display message

}

else {

throw 10;

}

} //if

catch(int e)

{

cout << "File Not found " << e << endl;

}

//system("pause"); //Pause

return 0;

}//main

Once you have completed the program, run it on the input file below:

Lab4C.in

10 20 30 40 50

60 70 80 90.0

11 13.0

20 40 70 19.0

Output should be as follows:

Read Line 0 10.0 Sum 10.0

Read Line 0 20.0 Sum 30.0

Read Line 0 30.0 Sum 60.0

Read Line 0 40.0 Sum 100.0

Read Line 0 50.0 Sum 150.0

..

Read Line 3 20.0 Sum 20.0

Read Line 3 40.0 Sum 60.0

Read Line 3 70.0 Sum 130.0

Read Line 3 19.0 Sum 149.0

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

Visual Basic6 Database Programming

Authors: John W. Fronckowiak, David J. Helda

1st Edition

0764532545, 978-0764532542

More Books

Students also viewed these Databases questions

Question

Know the principles of effective service recovery systems.

Answered: 1 week ago

Question

Explain the service recovery paradox.

Answered: 1 week ago