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