Что не так то
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 cat1 = 0;
int cat2 = 0;
if (this.age > anotherCat.age) {
cat1++;
}
else {
cat2++;
}
if (this.weight > anotherCat.weight) {
cat1++;
}
else {
cat2++;
}
if (this.strength > anotherCat.strength) {
cat1++;
}
else {
cat2++;
}
if (cat1 >= cat2) {
return true;
}
else {
return false;
}
}
public static void main(String[] args) {
}
}