using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
public static void Main()
public static void CallerBDO()
List<int> RandCalc = RandCalculatorHelper();
Console.WriteLine("Минимальное значение:{0} \nМаксимальное значение:{1}", RandCalc.Max(), RandCalc.Min());
private static List<int> RandCalculatorHelper()
List<int> RandCubes = new List<int>();
for(int i = 0; i < 10; i++)
for(int j = 0; j < 100; j++)
private static bool RandBDO100(double Percent)
Random rnd = new Random();
double RandCube = rnd.NextDouble() * (101 - 1);