阅读下面代码 class Test implements Runnable { public int run() { int i=0; while(true) { i++; System.out.println("i="+i); } } } 上述代码的编译结果是
A.程序通过编译,并且run()方法可以正常输出递增的i值
B.程序通过编译,调用run()方法将不显示任何输出
C.程序不能通过编译,因为while的循环控制条件不能为true
D.程序不能通过编译,因为run()方法的返回值类型不是void
第1题:
第2题:
下面代码的输出结果是x = 12.34;print(type(x))
A.<class 'bool'>
B.<class 'complex'>
C.<class 'float'>
D.<class 'int'>
第3题:
下面代码的输出结果是() x = 12.34 print(type(x))
A.<class ‘int’>
B.<class ‘float’>
C.<class ‘bool’>
D.<class ‘complex’>
第4题:
第5题:
下面代码的输出结果是 x = 12.34 print(type(x))
A.<class 'complex'>
B.<class 'float'>
C.<class 'int'>
D.<class 'bool'>