Upload files to 'assignment5/Question1'

This commit is contained in:
2022-04-28 12:05:25 +08:00
parent e20c82d559
commit a94d0e9d87

View File

@@ -0,0 +1,10 @@
//Q1
public class StartGrading {
public static void testVehicle() {
//The Vehicle class is abstract. We cannot create objects from this class. Therefore, we cannot test anything
}
public static void main(String[] args) {
Vehicle.testVehicle();
}
}