Прошу помочь?
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 win1 = 0;
int win2 = 0;
if(this.age >= anotherCat.age){
win1++;
}
if(this.weight >= anotherCat.weight){
win1++;
}
if(this.strength >= anotherCat.strength){
win1++;
}
return win1 <= win2;
}
public static void main(String[] args) {
}
}