Newer
Older
public class Main {
public static void main(String[] args) {
Pet p = new Dog("jeemz","white");
System.out.print("Dog name is " + p.getName() + " color is " + p.getColor() +" sound is " + p.voice());
Gitlab@Informatics
public class Main {
public static void main(String[] args) {
Pet p = new Dog("jeemz","white");
System.out.print("Dog name is " + p.getName() + " color is " + p.getColor() +" sound is " + p.voice());