Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1.         String out = "";
  2.         Random randomGenerator = new Random();
  3.         for(int i = 0; i < 250000;i++){
  4.             out += "IN ";
  5.             out += randomGenerator.nextInt(600000) + 1 + " ";
  6.         }
  7.         PrintWriter output = new PrintWriter(System.getProperty("user.dir") + "\\input250.txt");
  8.         output.println(out);
  9.         output.close();
  10.         out = "";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement