標題:
[隨堂測驗] 對陣列排序 (二)
[打印本頁]
作者:
李泳霖
時間:
2022-1-27 15:25
標題:
[隨堂測驗] 對陣列排序 (二)
本帖最後由 李泳霖 於 2022-1-28 14:17 編輯
運用 Scanner 類別下的 nextInt() 方法 與 Arrays 類別下的 sort() 方法, 完成如下畫面之程式:
import java.util.*;
public class Ch45
{
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<10; i++)
{
System.out.print("第"+(i+1)+"個數: ");
n[i]=s.nextInt();
}
Arrays.sort(n);
System.out.print("剛輸入的10個數由小而大依序為: ");
for(int i=0; i<10; i++)
System.out.print(n[i]+" ");
System.out.println();
}
}
複製代碼
作者:
曾俊儒
時間:
2022-1-27 15:36
此帖僅作者可見
作者:
于棋安
時間:
2022-1-27 15:49
此帖僅作者可見
作者:
丁肇志
時間:
2022-1-28 10:45
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2