Hi,
You have problems with uninitialized variables "sum" and "AA" and errors using the array "numbers".
Try this out:
#include <iostream>
#include <cmath>
#include <fstream>
using namespace std;
int main()
{
//declare an array
float numbers[10];
double sum;
double mean;
double standardDeviation;
double AA;
double sdresult;
double mode;
double max;
double modeposition;
sum = 0;
AA = 0;
//storing 30 numbers entered by user in an array
cout<<"enter thirty floating point numbers"<<endl;
//compute sum, mean and standard deviation
for (int i = 0; i < 10; ++i)
{
cin >> numbers[i];
sum += numbers[i];
mean = sum /10;
AA += pow(numbers[i] - mean,2);
max= numbers[i];
modeposition = i;
}
sdresult = sqrt(AA/10);
cout<<"sum="<<sum <<endl;
cout<<"mean="<<mean <<endl;
cout<<"standard Deviation = " <<sdresult<<endl;
cout<<"mode="<<modeposition<<endl;
return 0;
}