Не понимаю почему но, не проходит проверку по пункту "Всего в классе должно быть 4 переменных.". Не понимаю почему.
package com.javarush.task.task05.task0501;
/*
Создание кота
*/
public class Cat {
//напишите тут ваш код
String name;
int age;
int weight;
int strength;
public static void main(String[] args) {
//Cat vasya = new Cat("Вася", 3, 5, 100);
}
public Cat(String name, int age, int weight, int strength){
this.name = name;
this.age = age;
this.weight = weight;
this.strength = strength;
}
}