public static void Main()
Random victor = new Random();
int lowValue, highValue, delta, realNumb;
float captureNumb, protoNumb;
captureNumb = (float)victor.NextDouble();
Console.WriteLine("Enter your lowest value");
lowValue = int.Parse(Console.ReadLine());
Console.WriteLine("Enter your highest value");
highValue = int.Parse(Console.ReadLine());
delta = (highValue - lowValue);
protoNumb = (float)(captureNumb * delta);
realNumb = (int)(protoNumb + lowValue);
Console.WriteLine(realNumb);