ΠΠ΅ΠΈΠ·Π²Π΅ΡΡΠ½Π°Ρ ΠΎΡΠΈΠ±ΠΊΠ° ΠΊΠΎΠΌΠΏΠΈΠ»ΡΡΠΈΠΈ.
ΡΠ°ΠΉΠ» com/javarush/task/task05/task0517/Cat.java, ΡΡΡΠΎΠΊΠ° 35, ΠΏΠΎΠ·ΠΈΡΠΈΡ 800
package com.javarush.task.task05.task0517;
/*
ΠΠΎΠ½ΡΡΡΡΠΈΡΡΠ΅ΠΌ ΠΊΠΎΡΠΈΠΊΠΎΠ²
*/
public class Cat {
String name = null;
int age;
int weight;
String adress = null;
String color = null;
public Cat(String name){
this.name = name;
}
public Cat(int age, String name, int weight){
this.name = name;
this.weight = weight;
this.age = age;
}
public Cat( String name, int age){
this.name = name;
this.age = 5;
this.age = age;
}
public Cat(String color, int weight, int age){
this.weight = weight;
this.color = color;
this.age = 5;
this.age = age;
}
public Cat(String address, String color, int weight){
this.weight = weight;
this.color = color;
this.address = address;
}//Π½Π°ΠΏΠΈΡΠΈΡΠ΅ ΡΡΡ Π²Π°Ρ ΠΊΠΎΠ΄
public static void main(String[] args) {
}
}