подскажите пожалуйста, что не так, ругается на метод fight. Скопировал его с соседней задачи этой лекции.
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) {
int ageAdvantage = this.age > anotherCat.age ? 1 : 0;
int weightAdvantage = this.weight > anotherCat.weight ? 1 : 0;
int strengthAdvantage = this.strength > anotherCat.strength ? 1 : 0;
int score = ageAdvantage + weightAdvantage + strengthAdvantage;
return score > 2; // return score > 2 ? true : false;
}
public static void main(String[] args) {
Cat cat1 = new Cat();
cat1.age=1;
cat1.weight=2;
cat1.strength=3;
Cat cat2 = new Cat();
cat2.age=2;
cat2.weight=3;
cat2.strength=4;
System.out.println(cat1.fight(cat2));
System.out.println(cat2.fight(cat1));
}
}