fork download
  1. import java.util.Random;
  2.  
  3. public class Main {
  4.  
  5. public final static String[] DANK_MEMES = {
  6. "Solo Q means nothing if you're Diamond 2",
  7. "Dank memes can't melt playoff dreams",
  8. "Kayle can do it!",
  9. "You can practice it in sandbox mode",
  10. "5 AD",
  11. "They'd have to translate that into 16 languages",
  12. "Use league's excellent Replay system to review your games",
  13. "The technology isn't there yet",
  14. "Soon (TM)",
  15. "Riot games does not condone E-stalking",
  16. "Win 2 to give false hope",
  17. "The unseen ____ is the deadliest",
  18. "Spaghetti code",
  19. "They're probably coded as minions"
  20. };
  21.  
  22. public static void main(String[] args) {
  23. Random r = new Random();
  24. int indx = r.nextInt(DANK_MEMES.length);
  25. System.out.println(DANK_MEMES[indx]);
  26. }
  27. }
Success #stdin #stdout 0.11s 320576KB
stdin
Standard input is empty
stdout
Use league's excellent Replay system to review your games