static void Main(string[] args) { Osoba o = new Osoba("Adam", "Miś", "20.03.1980"); Osoba o2 = new Student("Michał", "Kot", "13.04.1990", 2, 1, 12345); Osoba o3 = new Pilkarz("Mateucz", "Żbik", "10.08.1986", "obrońca", "FC Czestochowa"); o.WypiszInfo(); o2.WypiszInfo(); o3.WypiszInfo(); Student s = new Student("Krzysztof", "Jeż", "22.12.1990", 2, 5, 54321); Pilkarz p = new Pilkarz("Piotr", "Kos", "14.09.1984", "napastnik", "FC Politechnika"); s.WypiszInfo(); p.WypiszInfo(); ((Pilkarz)o3).StrzelGola(); p.StrzelGola(); p.StrzelGola(); o3.WypiszInfo(); p.WypiszInfo(); Console.ReadKey(); }
static void Main(string[] args) { Osoba student1 = new Student(); student1.WypiszInfo(); Console.ReadKey(); }
static void Main(string[] args) { Console.WriteLine("Hello World!"); Student student1 = new Student("Sebastian", "Krzynowek", 2000, "Olsztyn", 2, 3, 151048); Student student2 = new Student("Michal", "Lasko", 1994, "PodMostem", 2, 3, 123452); Osoba osoba1 = new Osoba("Sebastian", "Nazwisko", 2000, "Olsztyn Tadeusza Kosciuszki 17 "); Osoba osoba2 = new Osoba("Michal", "Lasko", 1994, "PodMostem mostowa 3"); osoba1.WypiszInfo(); student1.WypiszInfo(); osoba2.WypiszInfo(); student2.WypiszInfo(); Console.ReadKey(); }
static void Main(string[] args) { Osoba osoba1 = new Osoba("Jan", "Kowalski", 1995); Osoba osoba2 = new Osoba("Tomasz", "Adamski", 1983); osoba1.WypiszInfo(); Console.ReadKey(); Student student1 = new Student("Jan", "Janowski", 1998); Student student2 = new Student("Mateusz", "Nowak", 1996); student1.WypiszInfo(); Console.WriteLine(student1.ObliczWiek()); Console.ReadKey(); osoba1 = student1; student2 = (Student)osoba2; }