摘要: 什么是数组 数组的声明和创建 public class ArrayDemo01 { public static void main(String[] args) { int[] nums; // 1.定义 nums=new int[10]; // 2.创建一个数组 // 3.给数组元素赋值 nums 阅读全文
posted @ 2021-03-02 11:12 白头不胜簪 阅读(102) 评论(0) 推荐(0) 编辑