Online Java Compiler By
JavaTpoint.com
import java.util.*; public class SecondSmallestInArrayExample2{ public static int getSecondSmallest(Integer[] a, int total){ List
list=Arrays.asList(a); Collections.sort(list); int element=list.get(1); return element; } public static void main(String args[]){ Integer a[]={1,2,5,6,3,2}; Integer b[]={44,66,99,77,33,22,55}; System.out.println("Second Smallest: "+getSecondSmallest(a,6)); System.out.println("Second Smallest: "+getSecondSmallest(b,7)); }}
Output