判断题 JOptionPane.showInputDialog()方法一般用于弹出 输入对话框。()
判断题 { public static void main(String args[]) { System.out.println(MyClass1.data); } } class MyClass1 { int data=10; } 。()
判断题 一个Java Applet不再需要main方法,但必须有且只有一个类扩展了Applet类,把这个类叫做这个Java Applet的主类。()
判断题 数组的下标是从0开始的,因此数组若是7个元素,下标到6为止。()
判断题 以下语句存在语法错误: if(x>0) y=10; z=20; else y=-100;。()