Answers for "Write a Java program to print the sum of the maximum and the minimum element in the array in java"

0

find min in array java

private static int findMin(int[] array) {
		int min = array[0];
		for(int i=1;i<array.length;i++) {
			if(min > array[i]) {
				min = array[i];
			}
		}
		return min;
	}
Posted by: Guest on May-10-2020

Code answers related to "Write a Java program to print the sum of the maximum and the minimum element in the array in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language