maximum and minimum element in the array

In this article, we are going to find maximum and minimum element in the given array using java code. Example:- if n=4(size of an array) arr={48,58,5,2}, then the output will be 58 is the maximum element and 2 is the minimum element. steps:- Java code to find maximum and minimum element in an array:- Output:- … Read more