本帖最後由 許婷芳 於 2019-11-2 14:15 編輯
運用 Console 類別, 取代 Scanner 類別, 改寫 對陣列排序(二) 中的程式碼.- import java.util.Arrays;
- import java.io.Console;
- public class b{
- public static void main(String []args){
- Console c = System.console();
- int arr[] = new int[10]; //宣告一個長度為10的整數陣列
- System.out.println("請任意輸入十個整數");
- for(int i=0;i<10;i++)
- {
- System.out.print("第"+(i+1)+"個數:");
- arr[i] = Integer.parseInt(c.readLine()); //arr[i] = s.nextInt;
- }
- Arrays.sort(arr); //對陣列進行排序
- System.out.println("您剛剛輸入的10個數由小到大依序為:");
- for(int i=0;i<10;i++)
- {
- System.out.print(arr[i]+" ");
- }
- }
- }
複製代碼 |