標題:
[隨堂測驗] 對陣列排序 (五)
[打印本頁]
作者:
許婷芳
時間:
2019-11-2 08:56
標題:
[隨堂測驗] 對陣列排序 (五)
本帖最後由 許婷芳 於 2019-11-2 14:15 編輯
運用 Console 類別, 取代 Scanner 類別, 改寫 對陣列排序(二) 中的程式碼.
import java.util.Arrays;
import java.io.Console;
public class b{
public static void main(String []args){
Console c = System.console();
int arr[] = new int[10]; //宣告一個長度為10的整數陣列
System.out.println("請任意輸入十個整數");
for(int i=0;i<10;i++)
{
System.out.print("第"+(i+1)+"個數:");
arr[i] = Integer.parseInt(c.readLine()); //arr[i] = s.nextInt;
}
Arrays.sort(arr); //對陣列進行排序
System.out.println("您剛剛輸入的10個數由小到大依序為:");
for(int i=0;i<10;i++)
{
System.out.print(arr[i]+" ");
}
}
}
複製代碼
作者:
洪寬瀧
時間:
2019-11-2 13:59
此帖僅作者可見
作者:
田宇任
時間:
2019-11-2 14:01
此帖僅作者可見
作者:
吳孟書
時間:
2019-11-2 14:01
此帖僅作者可見
作者:
吳孟修
時間:
2019-11-2 14:03
此帖僅作者可見
作者:
湯郡一
時間:
2019-11-2 14:05
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2