Skip to content

Instantly share code, notes, and snippets.

@Rayer
Last active May 20, 2017 00:03
Show Gist options
  • Save Rayer/558e1e97df70d59b12d3 to your computer and use it in GitHub Desktop.
Save Rayer/558e1e97df70d59b12d3 to your computer and use it in GitHub Desktop.
import java.util.Random;
class Untitled {
public static void main(String[] args) {
Random random = new Random();
for(int i = 0; i < 100; ++i) {
if(random.nextInt() % 4 == 0)
System.out.print("O");
else
System.out.print("X");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment