摘要: 数组的创建 int[ ] arr=new int[30]; arr[0]=1; arr[1]=2; ...arr[29]=12; ps:下标从0开始 数组的初始化 int[ ] arr=new int[30];//默认赋值为30个0 int[ ] arr={15,68,89,90}//用大括号将所有 阅读全文
posted @ 2020-05-13 17:33 行所当行 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1.Linux系统有哪些部分组成? linux核心、shell和应用程序2.新建一个文本文件有有哪些命令可以实现? touch a.txt (1.创建文件夹—>mkdir -p 文件夹名;2.创建文件-->touch a.txt) 3.Linux关机与重启命令? 关机:shoudown -h now 阅读全文
posted @ 2020-05-13 15:59 行所当行 阅读(154) 评论(0) 推荐(0) 编辑