Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
796 B
1
Indexable
Never
public class DemoHorses {
    public static void main(String[] args) {
        Horse horse = new Horse("Thunder", "Brown", 2015);
        RaceHorse raceHorse = new RaceHorse("Flash", "Black", 2017, 10);

        System.out.println("Horse Details:");
        System.out.println("Name: " + horse.getName());
        System.out.println("Color: " + horse.getColor());
        System.out.println("Birth Year: " + horse.getBirthYear());

        System.out.println();

        System.out.println("Race Horse Details:");
        System.out.println("Name: " + raceHorse.getName());
        System.out.println("Color: " + raceHorse.getColor());
        System.out.println("Birth Year: " + raceHorse.getBirthYear());
        System.out.println("Races Completed: " + raceHorse.getRacesCompleted());
    }
}