Не могу найти
package com.javarush.task.task05.task0517;
/*
Конструируем котиков
*/
public class Cat {
//напишите тут ваш код
String name;
int age;
int weight;
String address;
String color;
public Cat(String name){
this.name = name;
age = 5;
weight = 5;
color = "red";
}
public Cat(String name, int age){
this.name = name;
this.age = age;
weight = 5;
color = "red";
}
public Cat(String name, int age, int weight){
this.name = name;
this.age = age;
this.weight = weight;
color = "red";
}
public Cat(int weight, String color){
this.weight = weight;
this.color = color;
age = 5;
}
public Cat(String address, String color, int weight) {
this.address = address;
age = 5;
this.weight = weight;
this.color = color;
}
public static void main(String[] args) {
}
}