#11952: JAVA執行中斷


FaiWei (ChunWeiYeah)

學校 : 樹德科技大學
編號 : 61317
來源 : [220.143.87.171]
最後登入時間 :
2017-09-19 20:14:15
a104. 排序 -- yoooooooo | From: [120.119.34.43] | 發表日期 : 2017-04-27 00:15

import java.util.*;
public class po{
public static void main(String[]argv){

Scanner sc=new Scanner(System.in);
int time;

time=sc.nextInt();

int arr[]=new int[time]; 


while(sc.hasNext()){

for(int i=0;i<time;i++){ 
arr[i]=sc.nextInt();
}

Arrays.sort(arr);
for(int i=0;i<time;i++){
System.out.print(arr[i]+" ");
}
}
}
}

 

 

可以問一下為什麼這樣執行會一直跑出執行中斷嗎?

謝謝

 

 
#11953: Re:JAVA執行中斷


FaiWei (ChunWeiYeah)

學校 : 樹德科技大學
編號 : 61317
來源 : [220.143.87.171]
最後登入時間 :
2017-09-19 20:14:15
a104. 排序 -- yoooooooo | From: [120.119.34.43] | 發表日期 : 2017-04-27 00:43

import java.util.*;
public class po{
public static void main(String[]argv){

Scanner sc=new Scanner(System.in);
int time;

time=sc.nextInt();

int arr[]=new int[time]; 


while(sc.hasNext()){

for(int i=0;i<time;i++){ 
arr[i]=sc.nextInt();
}

Arrays.sort(arr);
for(int i=0;i<time;i++){
System.out.print(arr[i]+" ");
}
}
}
}

 

 

可以問一下為什麼這樣執行會一直跑出執行中斷嗎?

謝謝

 

沒事了 把WHILE放錯地方


 
ZeroJudge Forum