这是我的代码,我正在收到NZEC错误。我哪里出错了? 我试过两次抛出并尝试抓住方法来解决这个问题,但我无法做到。
package HaHa;
import java.io.*;
class HaHa {
public static void main(String args[]) {
try {
int t,k,i,y,n;
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
t=Integer.parseInt(br.readLine());
String m[]=new String[t];
for(i=0;i<t;i++) {
m[i]=br.readLine();
}
for(y=0;y<t;y++) {
char[] num = new char[m[y].length()];
num=m[y].toCharArray();
n=m[y].length();
int mid=n/2;
int left=mid-1;
for(k=0;k<=left;) {
System.out.print(num[k]);
k=k+2;
}
System.out.println();
}
}
catch(Exception e) {
return;
}
}
}
任何人都可以告诉我为什么我会收到此错误。