p175-3(1)
package java02;
import java.util.jar.JarException;
public class B {
public static void main (String args[ ]) {
int n=0,m=0,t=1000;
try {
m=888;
throw new java.io.IOException("right");
t=100;
}
catch(Exception e) {
}
}
}