Skip to content

Instantly share code, notes, and snippets.

@chochos
Created February 21, 2013 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chochos/5006007 to your computer and use it in GitHub Desktop.
Save chochos/5006007 to your computer and use it in GitHub Desktop.
Monopattable Unicorns
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");
}
}
class Math {
static int random() { return 0; }
}
class Unicorn {
private static int count=0;
static boolean pat() {
return count++%3==0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment