Вроде все правильно, но что то не пропускает(
package com.javarush.task.task05.task0517;
/*
Конструируем котиков
*/
public class Cat {
//напишите тут ваш код
private String name;
private int age;
private int weight;
private String address;
private String color;
public Cat(String name){
this.name = "Белка";
this.age = 7;
this.weight = 3;
this.color = "Белый";
this.address = null;
}
public Cat(String name, int weight, int age){
this.name = "Мурзик";
this.weight = 2;
this.age = 3;
this.color = "Черный";
this.address = null;
}
public Cat(String name, int age){
this.name = "Бася";
this.age = 5;
this.weight = 3;
this.color = "Серый";
this.address = null;
}
public Cat(int weight, String color){
this.name = null;
this.age = 1;
this.weight = 8;
this.color = "Серый";
this.address = null;
}
public Cat(int weight, String color, String address){
this.address = "чужой домашний кот";
this.age = 4;
this.weight = 15;
this.color = "4х цветный";
this.name = null;
}
public static void main(String[] args) {
}
}