Hi everyone, I need a bit of help in this assignment I need to hand in for university. Can anyone help me? here is the problem:-

"Read a program that will read in a file of integers into an array. Hence, writing your own functions, compute their mean, the largest value, and a function count to count how many times an integer occurs int he data. Output your results to a file aswell as the screen."

*Apparently these arays must also be read from a text file*

If anyone has any ideas I will be very greatful for your comments and help.

I know that something like this should be in it (I wrote most of this down, my lecturer edited it for me), but can anyone by any chance give me the codes to help complete this assignment.

PHP Code:
 #include <iostream>

using namespace std;

float mean(float A[], int Size);

int main()
{
    
float myArray[100];
    
int lasti;

    for (
i=099i++) // i = i + 1 is the same as i++
    
{
        
mean(myArrayi// what variable is "Size"?
    
}

    
last =i-1;

    for (
i=0<= lasti++)
    {
        
cout << X[i] << " "// don't quote around variables
    
//end loop

    
return 0;
}

float mean (float A[], int Size)      // what variable is Size?
{
    
float m;
    
float sum 0;
    for (
int i=0Sizei++) // wrong semi-colon,
    
{
        
sum sum A[i];
    }
       
    
sum/Size;
    return 
m;

I have declared also where I am also confused, imk not even sure what variable 'Size' is.

THANKS AND KIND REGARDS


ARYAN