本帖最後由 tonyh 於 2012-12-1 17:08 編輯
運用 Scanner 物件, 取代原本的 Console 物件, 來抓取使用者輸入的資料,
改寫上一個我們寫的程式.- import java.util.*;
- public class ch46
- {
- public static void main(String args[])
- {
- int a[]=new int[10]; //宣告陣列並產生陣列實體
- Scanner input=new Scanner(System.in);
- System.out.println("請任意輸入10個整數");
- for(int i=0; i<10; i++)
- {
- System.out.print("第"+(i+1)+"個數: ");
- a[i]=input.nextInt();
- }
- Arrays.sort(a); //對陣列排序
- System.out.print("您剛剛輸入的10個數由小而大依序為: ");
- for(int i=0; i<10; i++)
- {
- System.out.print(a[i]+" ");
- }
- }
- }
複製代碼 |