Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can you help me to get rid of this error? /****************************************************************************** Welcome to GDB Online. GDB online is an online compiler and debugger tool for

Can you help me to get rid of this error?

/******************************************************************************

Welcome to GDB Online. GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl, C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog. Code, Compile, Run and Debug online from anywhere in world.

*******************************************************************************/ #include #include #include

using namespace std;

int main() { int num; int smallNum = intMAX; int bigNum = intMIN; ifstream inputFile; ofstream outputFile;

inputFile.open("textfile.dat"); outputFile.open("outnumbers.txt"); while(inputFile >> num) { if(num < smallNum) { smallNum = num; } if(num > bigNum) { bigNum = num; } } cout << "The largest number is " << bigNum << endl; cout << "The smallest number is " << smallNum << endl; outputFile << "The largest number is " << bigNum << endl; outputFile << "The smallest number is " << smallNum << endl; inputFile.close(); outputFile.close(); return 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

Modern Dental Assisting

Authors: Doni Bird, Debbie Robinson

13th Edition

978-0323624855, 0323624855

Students also viewed these Programming questions