find the average of any amount of numbers using while loop
import java.util.Scanner; public class AnyAverage { public static void main(String[] args) { System.out.println("This program will find the average of any amount of numbers"); Scanner input = new Scanner(System.in); int count, total, runningCount, num; System.out.print("Please choose amount of numbers to average: "); count = input.nextInt();/* w w w . j av a 2 s .co m*/ runningCount = count; total = 0; while (runningCount != 0) { System.out.print("Please enter " + (count - runningCount + 1) + "th number: "); total += input.nextInt(); runningCount--; } if (count > 0) System.out.println("Average is " + (total/count)); else System.out.println("There are no numbers to average"); } }