не проходит 4е условие
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 k1=0;
int k2=0;
if (this.age>anotherCat.age)
k1++;
else k2++;
if (this.weight>anotherCat.weight)
k1++;
else k2++;
if (this.strength>anotherCat.strength)
k1++;
else k2++;
if (k1>k2)
return true;
else return false;
}
public static void main(String[] args) {
}
}