I need this code to have function definition, function prototype and function calling   #include #include using namespace std; int main() {     ifstream inFile;     inFile.open ("numbers.txt");     int numberOfItems = 9;     int number;     int sum=0;     float average;     if (inFile.fail())     {         cout << "Error opening file." <> number)         sum = sum + number;         numberOfItems++;     average = sum / numberOfItems;     cout << "Average: " << average;     inFile.close();     return 0; }   The numbers from the text should be: 78 85 2 45 12 99 65 9 15 65

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.2: Returning A Single Value
Problem 13E
icon
Related questions
Question

I need this code to have function definition, function prototype and function calling

 

#include <iostream>
#include <fstream>
using namespace std;
int main()
{
    ifstream inFile;
    inFile.open ("numbers.txt");
    int numberOfItems = 9;
    int number;
    int sum=0;
    float average;
    if (inFile.fail())
    {
        cout << "Error opening file." <<endl;
        exit (1);
    }
    while (inFile>> number)
        sum = sum + number;
        numberOfItems++;
    average = sum / numberOfItems;
    cout << "Average: " << average;
    inFile.close();
    return 0;
}

 

The numbers from the text should be:

78
85
2
45
12
99
65
9
15
65

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Types of Function
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning