摘要: 1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 int[] a = { 10, 20, 30, 40, 50 }; for (int i = 0; i < a.length; i++) { System.out.println(a[i]); } 阅读全文
posted @ 2021-04-20 16:40 赵佳慧 阅读(38) 评论(0) 推荐(0) 编辑