OneCompiler

How to find the second largest element of array in java by jayanthi ganesh

173

import java.util.*;

public class SecondHighest {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();

int array[] = new int[n];
for(int i=0; i<n; i++)

{

array[i]=sc.nextInt();

}

System.out.println(array[n-2]);
}
}