Use Java code to convert the command line arguments to an array of integers.
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]);
}
}
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
JavaJSPJSF