Use Java code to convert the command line arguments to an array of integers.
1
Expert's answer
2014-09-24T12:06:00-0400
public class Main { public static void main(String[] args) { int[] arrayOfIntegers = new int[args.length]; // array of integers for (int i = 0; i < args.length; i++) { arrayOfIntegers[i] = Integer.parseInt(args[i]); } } }
Comments
Leave a comment