Beispiel #1
0
        static void Main(string[] args)
        {
            Cat c = new Cat("Мурзик", new DateTime(2009, 04, 29));

            c.MakeNoise();
            Console.WriteLine($"Коту {c.Name} уже {c.GetAge()} лет");
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            Cat c = new Cat("Петя", new DateTime(2007, 7, 13));

            c.MakeNoise();
            Console.WriteLine($"Коту {c.Name} уже {c.GetAge()} лет");
        }