Ребят, поправьте меня, не пойму в чем дело. Не отрабатывает п.4 и п.7 задания.
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;
int b=0;
if (this.age>anotherCat.age)
a++;
else if (this.age<anotherCat.age)
b++;
else {
a++;
b++;}
if (this.weight>anotherCat.age)
a++;
else if (this.weight<anotherCat.age)
b++;
else {
a++;
b++;}
if (this.strength>anotherCat.strength)
a++;
else if (this.strength<anotherCat.strength)
b++;
else {
a++;
b++;}
return (a>b);
}
public static void main(String[] args) {
}
}