public class Sort {
/**
* Creates a new instance of Sort
.
*/
public Sort() {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
//先定义一个数组,存放10个数
int[] a={10,50,2,55,65,12,58,92,4,59};
int temp;
for(int j=0;j
for(int i=0;i
if(a[j] {
temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
}
System.out.print("从小到大的排序为:");
for(int i=0;i
System.out.print(a[i]+",");
}
}
}
用冒泡排序,或者快速排序,查资料吧!一些经典的排序算法还是要学的....