Валидатор не принимает решение и пшет: "Нужно сравнить каждый критерий по отдельности, и победителем будет тот, у которого больше "победивших" критериев"
Что надо изменить?
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 sumThisAge = 0;
int sumThisWeight = 0;
int sumThisStrenght = 0;
int sumAnotherAge = 0;
int sumAnotherWeight = 0;
int sumAnotherStrength = 0;
if (this.age > anotherCat.age)
sumThisAge++;
else
sumAnotherAge ++;
if (this.weight > anotherCat.weight){
sumThisWeight++;
}
else
sumAnotherWeight++;
if (this.strength > anotherCat.strength) {
sumThisStrenght++;
}
else
sumAnotherStrength++;
if (sumThisAge + sumThisWeight + sumThisStrenght > sumAnotherAge + sumAnotherWeight + sumAnotherStrength)
return true;
else
return false;
}
public static void main(String[] args) {
Cat cat1 = new Cat ();
Cat cat2 = new Cat ();
cat1.age = 3;
cat2.age = 5;
cat1.weight = 4;
cat2.weight = 5;
cat1.strength = 4;
cat2.strength = 6;
}
}