develop #1

Merged
Meraj merged 8 commits from develop into master 2026-05-18 15:56:18 +00:00
2 changed files with 15 additions and 7 deletions
Showing only changes of commit f406c54401 - Show all commits
-3
View File
@@ -24,9 +24,6 @@ public class SportsCar extends GasCar {
this.zeroToHundred = zeroToHundred; this.zeroToHundred = zeroToHundred;
} }
// TODO: Override showDetails()
// Call super.showDetails()
// Print acceleration time
@Override @Override
public void showDetails() public void showDetails()
{ {
+15 -4
View File
@@ -1,6 +1,9 @@
package org.util; package org.util;
import org.*; import org.*;
import org.model.ElectricCar;
import org.model.GasCar;
import org.model.SportsCar;
import org.model.Vehicle; import org.model.Vehicle;
/* /*
@@ -14,9 +17,17 @@ public class VehicleInspector {
v.basicInfo(); v.basicInfo();
// TODO: if (v instanceof ElectricCar)
// If ElectricCar → print "Check battery system" {
// If SportsCar → print "Check brakes and performance" System.out.println("Check battery system");
// If GasCar → print "Check engine and oil" }
else if (v instanceof SportsCar)
{
System.out.println("Check brakes and performance");
}
else if (v instanceof GasCar)
{
System.out.println("Check engine and oil");
}
} }
} }