Question
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
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started