Answer to Question #46967 in Java | JSP | JSF for neha reddy

Question #46967
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]);
}
}
}

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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS