Board logo

標題: 對陣列排序 [打印本頁]

作者: tonyh    時間: 2014-7-12 15:14     標題: 對陣列排序

本帖最後由 tonyh 於 2014-7-12 15:27 編輯

運用 Arrays 類別中的 sort() 函式, 對陣列排序.
  1. import java.util.Arrays;
  2. public class ch40
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int n[]={34,65,7,-3,6546,-564,0,-11,90,123};
  7.          System.out.println("排序前: ");
  8.          for(int i=0; i<n.length; i++)
  9.               System.out.print(n[i]+" ");
  10.          System.out.println();
  11.          Arrays.sort(n);
  12.          System.out.println("排序後: ");
  13.          for(int i=0; i<n.length; i++)
  14.               System.out.print(n[i]+" ");
  15.          System.out.println();
  16.     }
  17. }
複製代碼

作者: 張瀚仁    時間: 2014-7-12 15:39

  1. import java.util.Arrays;
  2. public class ch38
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int n[]={34,65,7,-3,6546,-564,0,-11,90,123};
  7.          System.out.println("排序前: ");
  8.          for(int i=0; i<n.length; i++)
  9.               System.out.print(n[i]+" ");
  10.          System.out.println();
  11.          Arrays.sort(n);
  12.          System.out.println("排序後: ");
  13.          for(int i=0; i<n.length; i++)
  14.               System.out.print(n[i]+" ");
  15.          System.out.println();
  16.     }
  17. }
複製代碼

作者: 林以諾    時間: 2014-7-12 15:39

  1. mport java.util.Arrays;
  2. public class ch40
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int n[]={56,45,44,464,6,4,6,4,646,,48,4,874,48,1,646,4,6,4,46};
  7.          System.out.println("排序前: ");
  8.          for(int i=0; i<n.length; i++)
  9.               System.out.print(n[i]+" ");
  10.          System.out.println();
  11.          Arrays.sort(n);
  12.          System.out.println("排序後: ");
  13.          for(int i=0; i<n.length; i++)
  14.               System.out.print(n[i]+" ");
  15.          System.out.println();
  16.     }
  17. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2