в чем дело, подскажите, пожалуйста
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 i=0;
int j=0;
if (this.age> anotherCat.age){
i++;
}else {
j++;}
if (this.weight>anotherCat.weight){
i++;
} else{
j++;
if (this.strength>anotherCat.strength){
i++;
}else {
j++;
}
if (i>j){
return true;}
else { return false;} //напишите тут ваш код
}
public static void main(String[] args) {
Cat marsik = new Cat();
Cat barsic = new Cat();
marsic.age =5;
marsic.weight = 4;
marsic.strenght =3;
barsic.age =4;
barsic.weight = 4;
barsic.strenght =3;
System.out.print (marsic.fight(barsic));
System.out.print (barsic.fight(marsic));
}
}