что-то я ничего не понимаю, вроде все правильно, а проверку не проходит.
package com.javarush.task.jdk13.task05.task0517;
/*
Конструируем котиков
*/
public class Cat {
//напишите тут ваш код
String name;
int age;
int weight;
String color;
String address;
public Cat (String name) {
this.name = name;
this.age = 2;
this.weight = 1;
this.color = "red";
}
public Cat (String name, int weight, int age) {
this.name = name;
weight = 6;
age = 5;
color = "blue";
}
public Cat (String name, int age) {
this.name = name;
this.weight = 3;
this.age = 1;
this.color = "black";
}
public Cat ( int weight, String color) {
this.weight = 3;
this.color = "dry";
this.age = 8;
}
public Cat (int weight, String color, String address) {
this.address = address;
this.age = 2;
this.color = "white";
this.weight = 4;
}
public static void main(String[] args) {
}
}