This commit is contained in:
nagynandorrobert 2023-09-21 10:16:14 +02:00
parent 8769db91a6
commit 47eae1a89e

View File

@ -21,6 +21,32 @@ namespace Balkezesek
progi.Feladat7();
}
public void Feladat7()
{
Dictionary<string, int> stadionok = new Dictionary<string, int>();
foreach (var item in kosar)
{
if (stadionok.ContainsKey(item.helyszin))
{
stadionok[item.helyszin]++;
}
else
{
stadionok.Add(item.helyszin, 1);
}
}
foreach (KeyValuePair<string, int> st in stadionok)
{
if (st.Value > 20)
{
Console.WriteLine($"{st.Key}: {st.Value}");
}
}
}
public void Beolvasas(string fajlnev)
{
StreamReader sr = new StreamReader(fajlnev, Encoding.UTF8);
@ -87,28 +113,7 @@ namespace Balkezesek
}
}
/*
public void Feladat7()
{
int alkalom = 0;
foreach (var item in kosar)
{
for (int i = 0; i < kosar.Count; i++)
{
if (item.helyszin[i] == item.helyszin[i-1])
{
alkalom++;
if (alkalom > 20)
{
Console.WriteLine(item.helyszin+": "+ alkalom);
}
}
}
}
}
*/
}
}