Question: Can anyone help solve the error with this program? The program is in C + + . include ? #include #include #include using namespace std;
Can anyone help solve the error with this program? The program is in C
include
#include
#include
#include
using namespace std;
Function prototype
bool readDataifstream &someFile, string city, double rain;
int main
ifstream inputFile;
string city;
double inchesOfRain;
Display table headings
cout "July Rainfall Totals for Selected Cities
;
cout City Inches
;
cout
;
Open the data file
inputFile.openweatherdat";
if inputFilefail
cout "Error opening data file.
;
else
Call the readData function
Execute the loop as long as it found and read data
while readDatainputFile city, inchesOfRain true
cout setw left city;
cout fixed showpoint setprecision
inchesOfRain endl;
inputFile.close;
return ;
readData
Each time it is called this function reads the next
one line of data from the input file passed to it
It stores the input data in reference variables.
Then, if it read data, it returns true. If there was
no more data in the file to read, it returns false.
bool readDataifstream &someFile, string city, double rain
bool foundData someFile city rain;
return foundData;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
