返回列表 發帖

[隨堂測驗] 對陣列排序 (五)

本帖最後由 陳品肇 於 2019-8-10 16:09 編輯

運用 Console 類別, 取代 Scanner 類別, 改寫 對陣列排序(二) 中的程式碼.
  1. import java.util.Arrays;
  2. import java.io.Console;
  3. public class Ch49{
  4.     public static void main(String args[])
  5.     {
  6.          Console c=System.console();
  7.          int n[]=new int[10];
  8.          System.out.println("請任意輸入10個整數");
  9.          for(int i=0; i<10; i++)
  10.          {
  11.              System.out.print("第"+(i+1)+"個數: ");
  12.              n[i]=Integer.parseInt(c.readLine());
  13.          }
  14.          Arrays.sort(n);
  15.          System.out.print("剛輸入的10個數由小而大依序為: ");
  16.          for(int i=0; i<10; i++)
  17.              System.out.print(n[i]+" ");
  18.          System.out.println();
  19.     }
  20. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表