Помогите понять где ошибка??
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 k = 0;
if (this.age > anotherCat.age) k++;
else k--;
if (this.weight > anotherCat.weight) k++;
else k--;
if (this.strength > anotherCat.strength) k++;
else k--;
if (k > 0)
return true;
else return false;
}
public static void main(String[] args) {
}
}