Add project files.

This commit is contained in:
szabotamasd
2025-05-20 14:25:44 +02:00
parent 469cc875f2
commit b45ae96186
7 changed files with 312 additions and 0 deletions

25
Helsinki1952/Olimpia.cs Normal file
View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Helsinki1952
{
internal class Olimpia
{
public int helyezes;
public int olimpikonok;
public string sport;
public string versenyszam;
public Olimpia(string adatsor)
{
string[] t = adatsor.Split(' ');
helyezes = int.Parse(t[0]);
olimpikonok = int.Parse(t[1]);
sport = t[2];
versenyszam = t[3];
}
}
}