(int a)
| 8 | } |
| 9 | |
| 10 | public static int f(int a) { |
| 11 | try { |
| 12 | return x(a); |
| 13 | } catch (Exception e) { |
| 14 | } |
| 15 | try { |
| 16 | return x(a - 5); |
| 17 | } catch (Exception e) { |
| 18 | } |
| 19 | try { |
| 20 | return x(-a); |
| 21 | } catch (Exception e) { |
| 22 | } |
| 23 | return 0; |
| 24 | } |
| 25 | |
| 26 | public static void main(String[] args) { |
| 27 | try { |