摘要: 点击查看代码 public static void main(String[] args) { int[] arr = {9, 4, 3, 7, 8, 2}; int temp; // 从小到大排序, 每次把最小的移到最前 for (int i = 0; i < arr.length; i++) { 阅读全文
posted @ 2023-03-02 10:27 fchhk 阅读(16) 评论(0) 推荐(0) 编辑