How to find Min/Max numbers in a java array?



You can find the minimum and maximum values of an array using for loops

Example

Live Demo

public class MinAndMax {    public int max(int [] array) {       int max = 0;             for(int i=0; i<array.length; i++ ) {          if(array[i]>max) {             max = array[i];          }       }       return max;    }    public int min(int [] array) {       int min = array[0];             for(int i=0; i<array.length; i++ ) {          if(array[i]<min) {             min = array[i];          }       }       return min;    }    public static void main(String args[]) {       int[] myArray = {23, 92, 56, 39, 93};       MinAndMax m = new MinAndMax();       System.out.println("Maximum value in the array is::"+m.max(myArray));       System.out.println("Minimum value in the array is::"+m.min(myArray));    } }

Output

Maximum value in the array is ::93 Minimum value in the array is ::23
Updated on: 2023-10-07T02:52:33+05:30

31K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements