// PROVIDED CLASS, DON'T CHANGE IT // WE WILL USE DIFFERENT CLIENTS TO TEST YOUR CODE import java.io.File; import java.io.IOException; import java.util.*; public class Assign1F16 { /** * @param args: String file name: * int array size * array size ints * 5 command line arguments: * String fName * int sizeA * int sizeB * int tupleNum * int setNum * */ public static void main(String[] args) { // There are 5 command line arguments: // one String filename and 4 ints: problem sizes Assign1 A1 = new Assign1(false); System.out.println("Reading input array"); int[] in = {}; String fName = args[0]; try { Scanner scan = new Scanner(new File(fName)); int size; size = scan.nextInt(); in = new int[size]; // loop through numbers in input file and sum them for(int i=0; i