19 lines
306 B
C#
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];
|
|||
|
}
|
|||
|
}
|
|||
|
}
|