问题 更新时间2023/10/10 13:29:00 下列程序的运行结果是__12345____。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(); }} 答案 登录 注册 12345 出自:江开 >> 江苏开放大学JAVA程序设计形成性考核作业1