Одно из условий этой задачи не верно. Не знаю почему
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 scoreOfCat1 = 0;
int scoreOfCat2 = 0;
if (this.age > anotherCat.age)
scoreOfCat1++;
else {
if(anotherCat.age > this.age)
scoreOfCat2++; }
if (this.weight > anotherCat.weight)
scoreOfCat1++;
else {
if(this.weight < anotherCat.weight)
scoreOfCat1++;}
if (this.strength > anotherCat.strength)
scoreOfCat1++;
else{
if(this.strength < anotherCat.strength)
scoreOfCat2++;}
if(this.age == anotherCat.age && this.weight == anotherCat.weight && this.strength == anotherCat.strength){
scoreOfCat1++;
scoreOfCat2++;
}
boolean winner = (scoreOfCat1 > scoreOfCat2);
return winner;
}
public static void main(String[] args) {
Cat cat1 = new Cat();
cat1.age = 1;
cat1.weight = 1;
cat1.strength = 1;
Cat cat2 = new Cat();
cat2.age = 1;
cat2.weight = 1;
cat2.strength = 1;
System.out.println(cat1.fight(cat2));
}
}