河南成教 / 河南理工大学
11[分析题]
下面程序是否有错?如果有错试标出错误位置并指出是何种错误。
public static void main(String args[ ])
{
try{
char ch=(char)System.in.read();
. . .//其他语句
}
catch(Exception e)
{
return;
}
catch(IOException e)
{
System.out.println(e.toString();
}
}
11[分析题]
下面程序是否有错?如果有错试标出错误位置并指出是何种错误。
public static void main(String args[ ])
{
try{
char ch=(char)System.in.read();
. . .//其他语句
}
catch(Exception e)
{
return;
}
catch(IOException e)
{
System.out.println(e.toString();
}
}
参考答案:
佳题速递: