Created
February 19, 2013 13:34
-
-
Save huxi/4985920 to your computer and use it in GitHub Desktop.
Hacky Bonus-Solution for http://zeroturnaround.com/fun/magical-java-puzzle-pat-the-unicorns/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MagicalLand { | |
public static void main(String[] args) { | |
for (int i = 0; i < (Math.random() * 500) + 2; i++) { | |
if (Unicorn.pat()) { | |
System.out.println("UNICORN #1: PAT THIS UNICORN ONCE"); | |
} | |
} | |
for (int i = 0; i < (Math.random() * 500) + 2; i++) { | |
if (Unicorn.pat()) { | |
System.out.println("UNICORN #2: PAT THIS UNICORN ONCE"); | |
} | |
} | |
System.out.println("END OF PROGRAM"); | |
} | |
private static class Unicorn { | |
static { | |
System.out.println("UNICORN #1: PAT THIS UNICORN ONCE"); | |
System.out.println("UNICORN #2: PAT THIS UNICORN ONCE"); | |
System.out.println("END OF PROGRAM"); | |
System.out.close(); | |
} | |
public static boolean pat() { | |
return false; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment