返回列表 發帖
  1. // Online Java Compiler
  2. // Use this editor to write, compile and run your Java code online
  3. import java.util.Arrays;
  4. class HelloWorld {
  5.     public static void main(String[] args) {
  6.            int n[]={22,11,12,123,55};
  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.     }
  15. }
複製代碼

TOP

返回列表