Developpement/23DEV1.1/TPS2/TP01/Polymorphisme/Véhicule/Camion.java

16 lines
222 B
Java
Raw Normal View History

2024-12-09 11:53:11 +01:00
import javax.swing.JOptionPane;
public class Camion extends TestVehicules implements Vehicule {
@Override
public String sorte()
{
return "Camion";
}
@Override
public int nbRoues()
{
return 6;
}
}