摘要: package basic.day07;public class Paixu { public static int[] xuanze(int[] x){ for(int k=0;k<x.length-1;k++){ for(int w=k+1;w<x.length;w++){ if(x[k]>x[w]){ int temp=x[k]; x[k]=x[w]; x[w]=temp; } } } return x; } public static int[] maopao(... 阅读全文
posted @ 2013-01-30 23:19 墨迹哥's 阅读(120) 评论(0) 推荐(0) 编辑