Подскажите где ошибка!
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;
this.age=5;
this.weight=6;
this.color="black";
}
public Cat( String name,int age,int weigh){
this.name=name;
this.age=age;
this.weight=weight;
this.color="black";
}
public Cat( String name,int age){
this.name=name;
this.age=age;
this.weight=6;
this.color="black";
}
public Cat(int weight,String color){
this.age=3;
this.weight=weight;
this.color=color;
}
public Cat(int weight,String color,String address){
this.age=3;
this.weight=weight;
this.color=color;
this.address=address;
}//напишите тут ваш код
public static void main(String[] args) {
}
}