• 2022-10-25
    1.请说出E类中【代码1】,【代码2】的输出结果。
  • 15.0 8.0

    内容

    • 0

      下列程序标注的【代码1】,【代码2】的输出结果是什么? publicclassE{ publicstaticvoidmain(Stringargs[]){ int[]a={10,20,30,40},b[]={{1,2},{4,5,6,7}}; b[0]=a; b[0][1]=b[1][3]; System.out.println(b[0][3]);//【代码1】 System.out.println(a[1]);//【代码2】 } }

    • 1

      for i in [1, 0]: print(i+1) 以上代码输出结果为? A: 2 1 B: [2, 1] C: 2

    • 2

      【问题2】<br/>(1)写出代码2进行时输入为3的输出结果;<br/>(2)写出代码2进行时输入为5的输出结果。

    • 3

      HTML 代码 : Header 1 Value 1 Value 2 jQuery 代码 : $("tr:odd") 结果 :

    • 4

      写出下面PHP代码运行的输出结果___。echo 'Testing ' . 1 + 2 . '45';