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