摘要: Day06 数组 数组是相同类型数据的有序集合 public class ArrayDemo01 { public static void main(String[] args) { int[] num = new int[10]; num[0] = 1; num[1] = 2; num[2] = 阅读全文
posted @ 2021-03-10 18:02 Boom、 阅读(60) 评论(0) 推荐(0)