Пример #1
0
        static void Main(string[] args)
        {
            Vozilo motocikl = new Vozilo();

            motocikl.setVrsta("Motocikl");
            motocikl.setBrojKotaca(2);
            Console.WriteLine("Upisi max brzinu motocikla");
            motocikl.setMaxBrzina(Convert.ToInt32(Console.ReadLine()));

            Vozilo automobil = new Vozilo();

            automobil.setVrsta("Automobil");
            automobil.setBrojKotaca(4);
            automobil.setMaxBrzina(motocikl.getMaxBrzina() * 1.30);

            Console.WriteLine(motocikl.ToString());
            Console.WriteLine(automobil.ToString());

            Console.ReadLine();
        }