本帖最後由 張瀚仁 於 2014-7-19 14:12 編輯
- import java.io.Console;
- import java.util.Arrays;
- public class ch39
- {
- public static void main(String args[])
- {
- int a,b,c,d,e,f,g,h,i,j;
- System.out.println("請任意輸入十個整數");
- Console co=System.console();
- System.out.print("請輸入第一個數:");
- a=Integer.parseInt(co.readLine());
- System.out.print("請輸入第二個數:");
- b=Integer.parseInt(co.readLine());
- System.out.print("請輸入第三個數:");
- c=Integer.parseInt(co.readLine());
- System.out.print("請輸入第四個數:");
- d=Integer.parseInt(co.readLine());
- System.out.print("請輸入第五個數:");
- e=Integer.parseInt(co.readLine());
- System.out.print("請輸入第六個數:");
- f=Integer.parseInt(co.readLine());
- System.out.print("請輸入第七個數:");
- g=Integer.parseInt(co.readLine());
- System.out.print("請輸入第八個數:");
- h=Integer.parseInt(co.readLine());
- System.out.print("請輸入第九個數:");
- i=Integer.parseInt(co.readLine());
- System.out.print("請輸入第十個數:");
- j=Integer.parseInt(co.readLine());
- int n[]={a,b,c,d,e,f,g,h,i,j};
- Arrays.sort(n);
- System.out.print("您剛剛輸入的十個數由小而大依序為:");
- for(int io=0;io<=9;io++)
- {
- System.out.print(n[io]+" ");
- }
- }
- }
複製代碼 |