Question: Write a Java program that reads ten numbers, computes their average, and finds out how many numbers are above the average by maintaining two variables,
Write a Java program that reads ten numbers, computes their average, and finds out how many numbers are above the average by maintaining two variables, max and count. max stores the current max number, and count stores its occurrences. Initially, assign the first number to max and 1 to count. Compare each subsequent number with max. If the number is greater than max, assign it to max and reset count to 1. If the number is equal to max, increment count by 1.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
