Подскажите, пожалуйста, почему не пропускает по 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 cat1 = 0;
int cat2 = 0;
if (this.age > anotherCat.age) {
cat1++;
}
else if (this.age < anotherCat.age) {
cat2++;
}
else if (this.age == anotherCat.age) {
cat1++;
}
if (this.weight > anotherCat.weight) {
cat1++;
}
else if (this.weight < anotherCat.weight) {
cat2++;
}
else if (this.weight == anotherCat.weight) {
cat1++;
}
if (this.strength > anotherCat.strength) {
cat1++;
}
else if (this.strength < anotherCat.strength) {
cat2++;
}
else if (this.strength == anotherCat.strength) {
cat1++;
}
if (cat1 < cat2 || cat1 == cat2) {
return true;
}
else {
return false;
}
}
public static void main(String[] args) {
Cat firstCat = new Cat();
firstCat.age = 200;
firstCat.weight = 20;
firstCat.strength = 150;
Cat secondCat = new Cat();
secondCat.age = 22;
secondCat.weight = 100;
secondCat.strength = 150;
System.out.println(firstCat.fight(secondCat));
}
}