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