2017年7月28日
摘要: int[] num = { 1, 6, 2, 5, 7, 3 }; for (int i = 0; i < num.length - 1; i++) { for (int j = 0; j < num.length - i - 1; j++) { if (num[j] < num[j + 1]) { 阅读全文
posted @ 2017-07-28 18:55 _sen 阅读(118) 评论(0) 推荐(0)