運用 Arrays.sort() 函式, 對陣列排序.- import java.util.Arrays;
- import java.io.Console;
- public class ch45
- {
- public static void main(String args[])
- {
- int a[]=new int[10]; //宣告陣列並產生陣列實體
- Console input=System.console();
- System.out.println("請任意輸入10個整數");
- for(int i=0; i<10; i++)
- {
- System.out.print("第"+(i+1)+"個數: ");
- a[i]=Integer.parseInt(input.readLine());
- }
- Arrays.sort(a); //對陣列排序
- System.out.print("您剛剛輸入的10個數由小而大依序為: ");
- for(int i=0; i<10; i++)
- {
- System.out.print(a[i]+" ");
- }
- }
- }
複製代碼 |