Board logo

標題: 對陣列排序 (二) [打印本頁]

作者: tonyh    時間: 2021-8-17 18:07     標題: 對陣列排序 (二)

本帖最後由 tonyh 於 2021-8-17 18:51 編輯

  1. import java.util.Arrays;
  2. import java.util.Scanner;

  3. public class Ch01 {

  4.         public static void main(String[] args) {
  5.                 Scanner s=new Scanner(System.in);
  6.                 int n[]=new int[10];
  7.                 System.out.println("請任意輸入10個整數");
  8.                 for(int i=0; i<n.length; i++)
  9.                 {
  10.                     System.out.print("第"+(i+1)+"個數: ");
  11.                     n[i]=s.nextInt();
  12.                 }
  13.                
  14.                 Arrays.sort(n);
  15.                
  16.                 System.out.print("遞增: ");
  17.                 for(int i=0; i<n.length; i++)
  18.                         System.out.print(n[i]+" ");
  19.                
  20.                 System.out.println();
  21.                
  22.                 System.out.print("遞減: ");
  23.                 for(int i=n.length-1; i>=0; i--)
  24.                         System.out.print(n[i]+" ");
  25.         }
  26. }
複製代碼

作者: 吳孟修    時間: 2021-8-17 18:54

此帖僅作者可見
作者: 吳孟書    時間: 2021-8-17 18:55

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2