import java.io.*; class Numbers1b { // Take a number of integers given as command line arguments // and store them in an array. // Find and print the biggest and smallest number and the average. public static void main (String[] args) throws IOException { int [] data; boolean flag=true; data = new int[args.length]; for(int i=0;i