以下是我正在处理的code challenge question。
我的代码是:
import java.io.*;
class NEW {
public static void main(String[] args)throws Exception {
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
long[] a;
a = new long[15];
long n,temp=0,num = 0;
int x=Integer.parseInt(br.readLine());
for(int j=0;j<x;j++)
{
n=Long.parseLong(br.readLine());
for(int i=0;i<n;i++)
{
if (i==0)
{
temp=num;
}
num=Long.parseLong(br.readLine());
if (i==0)
{
temp=num;
a[j]=i+1;
}
if(temp>num)
{
temp=num;
a[j]=i+1;
}
}
}
for(int i=0;i<x;i++)
{
System.out.println(a[i]);
}
System.exit(0);
}
}
它在NetBeans 8.2中运行良好,但是当我尝试上传它时,它会发出一条消息&#34;运行时错误(NZEC)&#34;。