Hi ! 
I got a problem!
My code is as follows:

#include<iostream> 
using namespace std;

int main()

{

float array[ ] = {0};

cout << "Please enter 10 number to find Maximum\n"; for(int i = 0; i < 10; i++) 
cin >> array[i] ;

int length = sizeof (array) / sizeof (array[0]); 
cout << length << "\n";

float max = array[0]; 
for(int i = 1; i < 10; i++)

{

if(array[i] > max) max = array[i];

}

cout << max;

return 0;

}

The result seems to be not exactly the maximum.
Why~