挑错题(A、B、C、D注释标注的哪行代码有错误?)填空栏只填写A、B、C和D字母之一。class E{public static void main(String args[]){int n = 0,m = 0,t = 1000;try{m =Integer.parseInt("8888");//An = Integer.parseInt("ab89");//Bt = Integer.parseInt("1289");//C}catch(Exception e) {}catch(NumberFormatException e) { }//D}}
A. m =Integer.parseInt("8888");//A
B. n = Integer.parseInt("ab89");//B
C. t = Integer.parseInt("1289");//C
D. catch(Exception e) {}//D