You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112
  1. public class A {
  2. public static void main(String []argv) {
  3. int i = 5;
  4. try {
  5. String s = "3";
  6. System.out.println(s);
  7. } catch (Exception e) {
  8. System.out.println(i);
  9. }
  10. }
  11. }