import java.io.*; class Numbers1a { // Read a number of integers into an array. // Find and print the biggest and smallest // number and the average. // Program deliberately written as a single method. public static void main (String[] args) throws IOException { int [] data; int number,count; int currentBiggest,currentSmallest,sum; double average; BufferedReader in = Text.open(System.in); System.out.print("Type the number of integers "); System.out.print("that will be entered: "); number=Text.readInt(in); data = new int[number]; for(count=0; countcurrentBiggest) currentBiggest=data[count]; else if(data[count]