namespace RandomTest { class Program { static void Main(string[] args) { for (int i = 0; i < 100; i++) { Random d = new Random(); Console.WriteLine(d.Next(100)); } } } }
namespace RandomTest { class Program { static void Main(string[] args) { for (int i = 0; i < 100; i++) { Random d = new Random(); Thread.Sleep(15); Console.WriteLine(d.Next(100)); } } } }
namespace RandomTest { class Program { static void Main(string[] args) { Random d = new Random(); for (int i = 0; i < 100; i++) { Console.WriteLine(d.Next(100)); } } } }