Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

Compiler returning errors with calculations and declarations. Screenshot of File.txt included. 

//importing necessary header files

#include<iostream>

#include<fstream>

#include<string>

using namespace std;

//writing a function to open the file and checking the file failure

bool openTheFile(ifstream& x,string fileName){

//open the file

x.open(fileName);

//if file doesnt open

if(x.fail())

{

//then return false

return false;

}

//otherwise returns true

return true;

}

//writing a function to read file and counting the number of integers,

//calculating sum and average of the given function*/

void calculateFile(ifstream& myFile,int& sum,int& total_num,double& average ){

//declaring variables

int count=0;

string output;

//checking end of file by using eof

while (!myFile.eof()) {

//displaying data

myFile >> output;

sum+=stoi(output);

//incrementing count variable

count++;

}

//assigning value of count variable to total_num

total_num = count;

//calculating average of the file

average = double(sum)/total_num;

return ;

}

// main method

int main(){

// creating input stream

ifstream myFile;

//open the file here, file name is file.txt

bool checkFileOpen = openTheFile(myFile,"File.txt");

//checking for failure of file

if(!checkFileOpen){

//displaying message to user if opening of file fails

cout<<"Failed to open the file";

return 0;

}

//declaring variables

int sum=0;

int total_num=0;

double average = 0.0;

// calling function calculate file

calculateFile(myFile,sum,total_num,average);

//displaying sum, average and total number of values to user

cout<<" sum of given integer value: "<<sum<<endl;

cout<<" total number of integers: "<<total_num<<endl;

cout<<" average of given data: "<<average<<endl;

 

return 0;

}

File Notepad
File Edit Format View Help
7 8 9
X
expand button
Transcribed Image Text:File Notepad File Edit Format View Help 7 8 9 X
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education