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