Здравствуйте уважаемое сообщество! Не до конца осознаю, в чём я допустил ошибку при решении данной задачи. не пропускает конкретно по реализации метода 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 winner=0;
{if(this.age<anotherCat.age)
winner--;
else if (this.age>anotherCat.age)
winner++;
else
winner+=0;}
{if (this.weight <anotherCat.weight)
winner--;
else if (this.weight >anotherCat.weight)
winner++;
else
winner=+0;}
{if (this.strength <anotherCat.strength)
winner--;
else if (this.strength >anotherCat.strength)
winner++;
else
winner+=0;}
return winner>0;
}
public static void main(String[] args) {
}
}