class murderer{ public static void main(String args[]) { int age; age = 3; switch (age) { case 1: System.out.println("You can't kill"); break; case 2: System.outprintln("You can talk"); break; case 2: System.outprintln("You can get in trouble"); break; default: System.out.println("You can go to hell"); break; } } }
What's wrong with it?