Все пункты выполняются кроме 4: "Выполнить все условия боя... "
В чем может быть ошибка?
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) {
//напишите тут ваш код
if ( this.age >anotherCat.age && this.strength>anotherCat.strength
|| this.weight>anotherCat.weight && this.strength> anotherCat.strength
|| this.weight > anotherCat.weight && this.age > anotherCat.age)
return true;
else return false;
}
public static void main(String[] args) {
}
}