fork download
  1. using System;
  2. using static System.Console;
  3.  
  4. public class Program {
  5. public static void Main() {
  6. var rand = new Random();
  7. for (int i = 0; i < 10; i++) {
  8. WriteLine(rand.Next(10000, 99999));
  9. }
  10. WriteLine();
  11. for (int i = 0; i < 10; i++) {
  12. rand = new Random();
  13. WriteLine(rand.Next(10000, 99999));
  14. }
  15. }
  16. }
  17.  
  18. //https://pt.stackoverflow.com/q/55701/101
Success #stdin #stdout 0.02s 16072KB
stdin
Standard input is empty
stdout
45055
58125
28487
32101
77075
10591
84661
62495
28444
65131

61201
61201
61201
61201
61201
61201
61201
61201
61201
61201