Question: float MyArray [ ] = { 1 5 . 0 , 8 . 0 , 1 3 . 0 , 6 . 0 , 9

float MyArray[]={15.0,8.0,13.0,6.0,9.0,12.0}; \\ C or C++ code
\\ Java code: float [] MyArray ={15.0,8.0,13.0,6.0,9.0,12.0};
int i;
float temp, sum;
sum =0.0;
for (i =0; i<6; i++)
{
sum = sum + MyArray[i];
}
temp = sum /6;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!