Untitled

Anonymous
java
02/06/2024 7:55 AM
460 B
9
Indexable
public class Lada implements Car {
    @Override
    public void year() {
        System.out.println("Год машины Lada");
    }
    public void mileage() {
        System.out.println("Пробег машины Lada");
    }
    public void cost() {
        System.out.println("Стоимость машины Lada");
    }
}
Editor is loading...
Leave a Comment