20 lines
256 B
Java
20 lines
256 B
Java
public class Voiture implements Vehicule{
|
|
|
|
int nbRoue;
|
|
String sorte;
|
|
|
|
public Voiture(){
|
|
this.nbRoue=4;
|
|
this.sorte="Voiture";
|
|
}
|
|
|
|
@Override
|
|
public int nbRoues(){
|
|
return this.nbRoue;
|
|
}
|
|
|
|
@Override
|
|
public String sorte(){
|
|
return this.sorte;
|
|
}
|
|
} |