• 2022-06-07
    下面程序的运行结果是class Test { int x=5; public static void main(String args[ ]){ System.out.println("x="+x); }}
    A: x=5
    B: 编译出错
    C: 运行出错
    D: x=0
  • B

    内容

    • 0

      若有如下程序: public class Test public static void main (String[] args) int x=20; if (x>10) System.out.print(x-=5); if (x>5) System.out.print(x--); 则程序运行后的输出结果是 【12】 。

    • 1

      请阅读下面的程序 public class Example03 { public static void main(String args) { int x = 3; if (x >; 5) { System.out.println("a"); } else { System.out.println("b"); } }} 程序的运行结果是() A: true B: false C: a D: b

    • 2

      给出下面一段程序,选择运行结果public class X{public static void main(String [] args){String names[]=new String[5];for(int x=0; xSystem.out.println(names[2]);}}命令行执行:java X a b命令后,其输出结果是下面哪一个?

    • 3

      以下程序的运行结果为()public class IfTest{public static void main(String args[]){int x=3; A: A.Not equal B: B.Equal C: C.无输出 D: D.编译出错

    • 4

      (6-6)请阅读程序,写出程序运行结果。 class Test{ static int x=10; int y=99; { y=y+10; } static { x=x+5; } { y=y+10; } static { x=x+5; } public Test() {//构造方法 x=x+5; } { System.out.println(x*y); } } public class Demo11 { public static void main(String[] args) { Test t1=new Test(); Test t2=new Test(); } }