Skip to content

Instantly share code, notes, and snippets.

@jpboudreault
Created February 19, 2013 20:23
Show Gist options
  • Save jpboudreault/4989562 to your computer and use it in GitHub Desktop.
Save jpboudreault/4989562 to your computer and use it in GitHub Desktop.
Solution to Java Magical Puzzle
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");
}
public static class Unicorn {
public static boolean pat() {
return true;
}
}
private static class Math {
public static float random() {
return -1f / 500f;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment