Rewrite the following code using the switch-case statement int code ( if (code == 1 || code == -1) System.out.println("Positive"); else if (code == 2) ( System.out.println("GOOD"); System.out.println("LUCK"); } else if (code == 0 ) System.out.println("ZERO"); System.out.println("Try Again");