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

4 lines
67 B
Java
Raw Normal View History

2024-12-09 11:53:11 +01:00
public interface Vehicule {
String sorte();
int nbRoues();
}