QN025. Write a program to print the average of array elements.
1. Objective
To print the average of array elements.
2. Theory
In this program we use for each loop to access all array elements and calcuate the average of them by adding and dividing by the total number of element.
3. Source Code
public class Qn025{
public static void main(String[] args){
int sum = 0;
int[] arrayVar = {2,3,5,8,9};
for(int a: arrayVar)
{
sum += a;
}
float average = sum / 4;
System.out.println("Average of array elements is: " + average);
}
}
4. Output
Average of array element is: 5.4
5. Conclusion
In this way, I would like to conclude that we can achieve the average value of array list. .length is used to calcuate the length of array. We change the type of length to float to achieve the fractional part also.