摘要: public static int[] sortAsc(int[] array) { if (array != null) { int temp; for (int i = 0; i < array.Length; i++) { for (int j = i + 1; j < array.Length; j++) { if (a... 阅读全文
posted @ 2013-07-22 16:18 loklook123 阅读(220) 评论(0) 推荐(0) 编辑