13
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
Random rnd = new Random();
8
for (int j = 0; j < 4; j++)
9
{
10
Console.WriteLine(rnd.Next(10)); //returns random integers < 10
11
}
12
}
13
}
Cached Result