קוד PHP:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace lotto
{
class Program
{
static void Main(string[] args)
{
Random rnd = new Random();
int lottonimber, tavlaot;
Console.WriteLine("Randomly Lotte Numbers Program");
Console.WriteLine("------------------------------");
Console.WriteLine("input The Amount Of Tables");
tavlaot = int.Parse(Console.ReadLine());
Console.WriteLine("--");
for (int i = 1; i <= tavlaot; i++)
{
for(int j = 1; j <= 6; j++)
{ lottonimber = rnd.Next(1, 40);
Console.WriteLine(lottonimber);
}
Console.WriteLine("--");
}
Console.ReadKey(); }
}
}