Files
DEV/DEV2.1/Polymophisme/ex1/Vehicule.java

5 lines
66 B
Java
Raw Permalink Normal View History

2024-03-18 13:54:22 +01:00
public interface Vehicule {
String sorte();
int nbRoues();
}