public class Cat {
    //напишите тут ваш код
    String name, address, color;
    int wheght, age;


    public void initialize(String name)
    {
        this.name = name;
    }

    public void initialize(String name, int wheght, int age)
    {
        this.name = name;
        this.wheght = wheght;
        this.age = age;
    }

    public void initialize(String name, int age)
    {
        this.name = name;
        this.age = age;
        this.wheght = 7;//стандартный вес
    }

    public void initialize(int wheght, String color)
    {
        this.wheght = wheght;
        this.color = color;
        this.name = null;
        this.address = null;
        this.age = null;
    }

    public void initialize(int wheght, String color, String address)
    {
        this.wheght = wheght;
        this.color = color;
        this.address = address;
    }
incompatible types: <nulltype> cannot be converted to int: Cat.java, line: 38, column: 20