本帖最後由 tonyh 於 2014-7-19 15:38 編輯
運用 Scanner 類別, 取代原本的 Console 類別, 改寫 對陣列排序(二) 中的程式碼.
- import java.util.Scanner;
- import java.util.Arrays;
- public class ch43
- {
- public static void main(String args[])
- {
- Scanner s=new Scanner(System.in);
- System.out.println("請任意輸入10個整數");
- int n[]=new int[10];
- for(int i=0; i<10; i++)
- {
- System.out.print("第"+(i+1)+"個數: ");
- n[i]=s.nextInt();
- }
- Arrays.sort(n);
- System.out.print("您剛剛輸入的10個數由小而大依序為: ");
- for(int i=0; i<10; i++)
- System.out.print(n[i]+" ");
- System.out.println();
- }
- }
複製代碼 |