摘要: Java第六课课后作业 创建一个int型数组,随机填充数组元素,用冒泡进行排序,并输出 public class H1 { /** * 存储数组 */ int[] arr; /** * 当前数组的位置 */ int index = 0;​ /** * 无参初始化数组 */ public H1() { 阅读全文
posted @ 2021-02-24 16:17 若你 阅读(82) 评论(0) 推荐(0) 编辑
摘要: Java第六课 一、排序 冒泡排序 public class C242 { public static void main(String[] args) { int[] arr = new int[5]; Random random = new Random(); for (int i = 0; i 阅读全文
posted @ 2021-02-24 12:21 若你 阅读(39) 评论(0) 推荐(0) 编辑