单项选择题

下面程序执行后,输出的值应是______。
public classs Test10
public static void main(String[] args)

float a=5, b=4, c=3;
if ( --a==b )
c=--a/c;
System.out.println(c);

A.1.33
B.1.0
C.0.0
D.1.67
<上一题 目录 下一题>
热门 试题

单项选择题
下列程序的运行结果是______。 Class C14 implements Runnable private int i; public C14(int n) this.i = n; public void run) try Thread.currentThread().sleep(i); catch(InterruptedException ie) System.err.println(ie.tString()); System. out.println( 线程 + Thread.currentThread() .getName + 睡眠了 + i + 毫秒结束 ); public class Testl4 public static void main(String[] args) Thread t = new Thread(new C14(300), t ); t.start();
A.线程t睡眠了300毫秒结束
B.线程Thread-0睡眠了300毫秒结束
C.线程t睡眠了i毫秒结束
D.线程Thread-0睡眠了i毫秒结束
单项选择题
下面程序执行后,baz的值应是______。 public class Test9 public static void main(String[] args) int index = 1; int fox[] = new int [3]; iht bar = fox [index]; int baz = bar + index; System.out.println(baz);
A.0
B.1
C.2
D.编译错误
相关试题
  • Applet生命周期包括Applet的创建、运行和 ...
  • 【9】 方法用于更新图形。它首先清除背景...
  • 从Component类派生出来的 【8】 类用于...
  • 【7】 布局管理器将组件一排一排地依次放...
  • 程序中可能出现一种情况:多个线程互相等待...