diff --git a/.vs/c-sharp/v17/.suo b/.vs/c-sharp/v17/.suo index 171458a..5354ac8 100644 Binary files a/.vs/c-sharp/v17/.suo and b/.vs/c-sharp/v17/.suo differ diff --git a/Listak/Program.cs b/Listak/Program.cs index 6c6a680..0889a34 100644 --- a/Listak/Program.cs +++ b/Listak/Program.cs @@ -9,8 +9,9 @@ namespace Listak { static void Main(string[] args) { List szamok = new List(); 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)); } diff --git a/Listak/bin/Debug/Listak.exe b/Listak/bin/Debug/Listak.exe index e06f016..fa0889d 100644 Binary files a/Listak/bin/Debug/Listak.exe and b/Listak/bin/Debug/Listak.exe differ diff --git a/Listak/bin/Debug/Listak.pdb b/Listak/bin/Debug/Listak.pdb index 732c24e..8429dc8 100644 Binary files a/Listak/bin/Debug/Listak.pdb and b/Listak/bin/Debug/Listak.pdb differ diff --git a/Listak/obj/Debug/Listak.exe b/Listak/obj/Debug/Listak.exe index e06f016..fa0889d 100644 Binary files a/Listak/obj/Debug/Listak.exe and b/Listak/obj/Debug/Listak.exe differ diff --git a/Listak/obj/Debug/Listak.pdb b/Listak/obj/Debug/Listak.pdb index 732c24e..8429dc8 100644 Binary files a/Listak/obj/Debug/Listak.pdb and b/Listak/obj/Debug/Listak.pdb differ