20
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int random1, random2;
8
GetMultipleRandomValue(out random1, out random2);
9
10
Console.WriteLine(random1);
11
Console.WriteLine(random2);
12
}
13
14
public static void GetMultipleRandomValue(out int x, out int y)
15
{
16
var random = new Random();
17
x = random.Next();
18
y = random.Next();
19
}
20
}
Cached Result
single digit=5
double digit=5
triple digit=8
max=8
not Devider
double digit=5
triple digit=8
max=8
not Devider