Java

Java Program to Calculate Average of Numbers Using Array1 min read

In this example , we will learn how to find the average of numbers using array. This will get you familiar with the basic syntax and requirements of a Java program.

Example 1: Program finds the average of specified array elements:




Output:

 

Example 2: Program takes the value of n (number of elements) and the numbers provided by user and finds the average of them using array

Output:

 

 

Leave a Comment