import java.io.*; class NumberOps0 { public static int[] readall(int n,BufferedReader reader) throws IOException // Create an array of n integers, read them from reader { int count; int [] a = new int[n]; for(count=0; countcurrent) current=a[i]; return current; } public static int smallest(int [] a) // return the smallest number in array a { int i,current=a[0]; for(i=1; i