範例/* * 將Array排序小到大和大到小 */import java.util.Arrays;import java.util. ... Arrays.sort(a); //使用sort排序小到大 for(int x:a){ System.out.print(x);
確定! 回上一頁