JAVA程序编写任意一组数从小到大排列,要求用选择结构和循环结构两种方法实现。谢谢!
JAVA程序编写任意一组数从小到大排列,要求用选择结构和循环结构两种方法实现。谢谢!
日期:2014-02-21 13:57:54 人气:2
public class MySort {
public static void main(String[] args) {
MySort sort = new MySort();
int[] arr = new int[]{3,22,11,5,400,99,20,22,5};
sort.sort(arr);
for(int i : arr){