多选题
Given:
3. public class Honcho {
4. static boolean b1 = false;
5. static int z = 7;
6. static Long y;
7. public static void main(String[] args)
8. for(int i = 0; i < 4; i++)
9. go(i);
10. }
11. static void go(int x) {
12. try {
13. if((x == 0) && (!b1 && z == 7)) System.out.print("0 ");
14. if(x < 2 ^ x < 10) System.out.print("1 ");
15. if((x == 2) &&
(y == null | (y.longValue() == 0))) System.out.print("2 ");
16. if(z <= (x + 4)) System.out.print("3 ");
17. }
18. catch (Exception e) {System.out.print("e "); }
19. } }
What is the result?