public Cars(int wheels, float speed, bool isworking)
this.isworking = isworking;
Console.WriteLine("Колёса:" + this.wheels + " Скорость: " + this.speed + " Работает: " + this.isworking);
public Trucks (int wheels, float speed, bool isworking, int passangers) : base(wheels, speed, isworking) {
this.passangers = passangers;
public static void Main()
Trucks Man = new Trucks(8, 185f, true, 8);