標題:
對陣列排序 (二)
[打印本頁]
作者:
tonyh
時間:
2021-8-17 18:07
標題:
對陣列排序 (二)
本帖最後由 tonyh 於 2021-8-17 18:51 編輯
import java.util.Arrays;
import java.util.Scanner;
public class Ch01 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int n[]=new int[10];
System.out.println("請任意輸入10個整數");
for(int i=0; i<n.length; i++)
{
System.out.print("第"+(i+1)+"個數: ");
n[i]=s.nextInt();
}
Arrays.sort(n);
System.out.print("遞增: ");
for(int i=0; i<n.length; i++)
System.out.print(n[i]+" ");
System.out.println();
System.out.print("遞減: ");
for(int i=n.length-1; i>=0; i--)
System.out.print(n[i]+" ");
}
}
複製代碼
作者:
吳孟修
時間:
2021-8-17 18:54
此帖僅作者可見
作者:
吳孟書
時間:
2021-8-17 18:55
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2