говорит, что метод figth должен соответствовать заданию( остальные условия выполнены
package com.javarush.task.task05.task0502;
/*
Реализовать метод fight
*/
public class Cat {
public int age;
public int weight;
public int strength;
public Cat() {
}
public boolean fight(Cat anotherCat) {
return this.age + this.weight + this.strength > anotherCat.age + anotherCat.weight + anotherCat.strength; //напишите тут ваш код
}
public static void main(String[] args) {
Cat cat1 = new Cat();
cat1.age = 2;
cat1.weight = 3;
cat1.strength = 4;
Cat cat2 = new Cat();
cat2.age = 3;
cat2.weight = 4;
cat2.strength = 5;
if (cat1.fight(cat2))
System.out.println(true);
else if (cat2.fight(cat1))
System.out.println(false);
}
}