import java.io.*; class SortIntArrayRec5 { public static void main(String[] args) throws IOException // Illustrates using selection sort to sort an array of integers. // In this case, selection sort is expressed recursively { int n; int[] array; BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); System.out.print("Enter number of integers : "); n = Integer.parseInt(in.readLine()); array = new int[n]; for(int i=0; i0) { str+=a[0]; for(int i=1; i