уже ступор 100% не понятно что надо еще. ну вроде бы все же прописал
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 count1=0;
int count2=0;
if (this.age>anotherCat.age)
count1++;
else
count2++;
if (this.weight>anotherCat.weight)
count1++;
else
count2++;
if (this.strength>anotherCat.strength)
count1++;
else
count2++;
if (this.age==anotherCat.age && this.weight==anotherCat.weight
&& this.strength==anotherCat.strength)
count1++;
count2++;
//return true;
if (count1>=count2)
return false;
else
return true;
}
public static void main(String[] args) {
}
}