[문제]인터페이스(Interface)를 활용하여 동화 느낌이 묻어나는 이야기를 출력해 보자. [결과]package com.example.tale;// [1/5] 인터페이스 Animalpublic interface Animal { void makeSound(); void eat(String food); void isHungry(); boolean isHappy();}package com.example.tale;// [2/5] 인터페이스 Animal을 오버라이딩한 클래스 Dogpublic class Dog implements Animal { // 1. 속성 private String name; private boolean isHungry = true; private..