import static lib.IO.*; public class FleetIncomplete { public static void main(String[] args) { Car[] cars = new Car[5]; Tire tire = new Tire(); tire.setManufacturer("Vredestein"); tire.setSnowTire(true); cars[0] = new Car(); cars[0].setBrand("Fiat"); cars[0].setModel("Punto"); cars[0].setMaxSpeed(180); cars[0].setTires(tire); cars[1] = new Car(); cars[1].setBrand("BMW"); cars[1].setModel("330"); cars[1].setMaxSpeed(240); cars[1].setTires(tire); cars[2] = new Car(); cars[2].setBrand("Audi"); cars[2].setModel("A4"); cars[2].setMaxSpeed(240); cars[2].setTires(tire); tire.setManufacturer("Goodyear"); tire.setSnowTire(false); cars[3] = new Car(); cars[3].setBrand("Lamborghini"); cars[3].setModel("Murcielago"); cars[3].setMaxSpeed(330); cars[3].setTires(tire); cars[4] = new Car(); cars[4].setBrand("Opel"); cars[4].setModel("Corsa"); cars[4].setMaxSpeed(180); cars[4].setTires(tire); Car fastest = findFastest(cars); // TODO } public static Car findFastest(Car[] cars) { // TODO } }