This commit is contained in:
2022-04-07 14:58:49 +02:00
parent e98213ebba
commit fa8afcf105
6 changed files with 2 additions and 1 deletions

Binary file not shown.

View File

@@ -9,8 +9,9 @@ namespace Listak {
static void Main(string[] args) { static void Main(string[] args) {
List<int> szamok = new List<int>(); List<int> szamok = new List<int>();
Random random = new Random(); Random random = new Random();
ulong darab = Convert.ToUInt64(Console.ReadLine());
for (int i = 0; i < random.Next(10,100); i++) { for (ulong i = 0; i < darab; i++) {
szamok.Add(random.Next(10, 100)); szamok.Add(random.Next(10, 100));
} }

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.