2
Given the class below, what is the result of the command line
Invocation
java Processor a be
public class Processor {
static public void main(String [] args) {
for(int x = 1; x< args.length; x++) {
System.out.print(args[x] +
}
3
}
Answers
Answered by
2
there is a error in this question..
Similar questions