Одно условие не проходит, два дня кручу его все там же, как с первого раза ПОМОГИТЕ.
package com.javarush.task.task05.task0502;
import java.io.*;
/*
Реализовать метод 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(anotherCat.age < this.age){
b++;
if(a>b || a==b)return true;
else return false;
}else if(this.weight > anotherCat.weight){
a++;
}else if(anotherCat.weight < this.weight){
b++;
if(a>b || a==b)return true;
else return false;
}else if(this.strength > anotherCat.strength){
a++;
}else if(anotherCat.strength < this.strength){
b++; }
if(a>b || a==b)return true;
else return false;
}
//напишите тут ваш код
public static void main(String[] args) {
}
}