completing TODO parts.

This commit is contained in:
2026-04-29 00:22:52 +03:30
parent 6cb8f9a8d8
commit 81b635df0c
7 changed files with 174 additions and 25 deletions
@@ -1,6 +1,9 @@
package org.util;
import org.*;
import org.model.ElectricCar;
import org.model.GasCar;
import org.model.SportsCar;
import org.model.Vehicle;
/*
@@ -18,5 +21,17 @@ public class VehicleInspector {
// If ElectricCar → print "Check battery system"
// If SportsCar → print "Check brakes and performance"
// If GasCar → print "Check engine and oil"
if (v instanceof ElectricCar) {
System.out.println("Check battery system");
}
else if (v instanceof SportsCar) {
System.out.println("check brakes and performance");
}
else if (v instanceof GasCar) {
System.out.println("Check engine and oil");
}
}
}