• 2022-06-19
    对于如下代码,下列哪个叙述是正确的?public class E { public static void main (String args[]) { String s0 = args[0]; String s1 = args[1]; String s2 = args[2]; System.out.println(s2); }}
    A: 程序出现编译错误
    B: 无编译错误,在命令行执行程序:“java E I love this game”,程序输出game
    C: 无编译错误,在命令行执行程序:“java E go on”,运行异常:ArraylndexOutOfBoundsException:2.
    D: 无编译错误,在命令行执行程序:“java E you are ok”程序输出you
  • 举一反三