package com.codegym.task.task02.task0209;
/*
Max, Bella, and Jack
*/
public class Solution {
public static void main(String[] args) {
Dog dog1 = new Dog();
dog1.name = "Max";
//write your code here
Dog max=new Dog();
Dog bella=new Dog();
Dog Jack=new Dog();
}
public static class Dog {
public String name;
}
}
package com.codegym.task.task02.task0209;
/*
Max, Bella, and Jack
*/
public class Solution {
public static void main(String[] args) {
Dog dog1 = new Dog();
dog1.name = "Max";
//write your code here
Dog max=new Dog();
Dog bella=new Dog();
Dog Jack=new Dog();
}
public static class Dog {
public String name;
}
}