import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main{
public static void main(String[] args){
try{
BufferedReader reader=new BufferedReader(new InputStreamReader(System.in));
String str;
while((str=reader.readLine())!=null){
int n=Integer.parseInt(str);
//保证测试的每组数据个数在1到10之间
if(n>=1 && n<=10)
{
int i=0,s=0;
long[] result=new long[n];
//用数组存储输入的多个数据
while(i<n)
{
result[i]=Long.parseLong(reader.readLine());
i++;
}
//然后对数组由小到大排序
for(int j=0;j<n;j++)
{
for(int k=n-1;k>j;k--)
{
if(result[j]>result[k])
{
long temp=result[j];
result[j]=result[k];
result[k]=temp;
}
}
}
//输出数组元素
while(s<n){
System.out.println(result[s]);
s++;
}
}
}
}catch(Exception e){
e.printStackTrace();
}
}
}
我在eclipse上运行能通过,并且能多次循环呀!