kész
This commit is contained in:
parent
8769db91a6
commit
47eae1a89e
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user