How to write a program to get minimum, maximum and average of values

//This code is how to print out the max and min values of a list of numbers from the above program//

// Print out of max and min exam grades//
    System.out.println( "Max Exam Score = " + Max );
    System.out.println( "Minimum Exam Score = " + Min `enter code here`);

Leave a Comment