高等继续教育 / Java程序设计
正确率:认证
题型描述: 纠错题
阅读以下程序,给出程序的输出结果。
public class MyClass {
int a[] = { 1, 2, 3, 4, 5 };
void out() {
for (int j = 0; j < a.length; j++)
System.out.print(a[j] + "");
}
public static void main(String[] args) {
MyClass my = new MyClass();
my.out();
}
}
参考答案:
佳题速递: