lotto/LottoProgram/LottoSzelveny.cs
2022-05-20 18:48:25 +02:00

19 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace LottoProgram
{
class LottoSzelveny
{
public int tipus;
public int[] szamok;
public LottoSzelveny(int t)
{
tipus = t;
szamok = new int[tipus];
}
}
}