返回列表 發帖

[作業] 對陣列排序 (三)

本帖最後由 tonyh 於 2014-7-19 15:38 編輯

運用 Scanner 類別, 取代原本的 Console 類別, 改寫 對陣列排序(二) 中的程式碼.

  1. import java.util.Scanner;
  2. import java.util.Arrays;
  3. public class ch43
  4. {
  5.     public static void main(String args[])
  6.     {
  7.          Scanner s=new Scanner(System.in);
  8.          System.out.println("請任意輸入10個整數");
  9.          int n[]=new int[10];
  10.          for(int i=0; i<10; i++)
  11.          {
  12.               System.out.print("第"+(i+1)+"個數: ");
  13.               n[i]=s.nextInt();
  14.          }
  15.          Arrays.sort(n);
  16.          System.out.print("您剛剛輸入的10個數由小而大依序為: ");
  17.          for(int i=0; i<10; i++)
  18.              System.out.print(n[i]+" ");
  19.          System.out.println();
  20.     }
  21. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表