Q:

Java Program to find the average of numbers using array

0

Java Program to find the average of numbers using array

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

public class demo1 {

    public static void main(String[] args) {
        double[] arr = {10.5, 10, 10.5, 10, 10.5};
        double total = 0;

        for(int i=0; i<arr.length; i++){
        	total = total + arr[i];
        }
        double average = total / arr.length; 
        System.out.format("The average is: %.3f", average);
    }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now