摘要: 例5.1 数组元素的引用 public class Demo5_1 { public static void main(String[] args) { int[] a = new int[10]; for (int i = 0; i <= 9; i++) { a[i] = i; } for (in 阅读全文
posted @ 2020-08-28 20:38 Gazikel 阅读(92) 评论(0) 推荐(0) 编辑