Что я сделал не так?
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 score = 0;
int xscore = 0;
if (this.age >= anotherCat.age) {
if (this.age > anotherCat.age) {
score ++;
}
if (this.age == anotherCat.age) {
score ++;
xscore ++;
}
}
if (this.weight >= anotherCat.weight){
if (this.weight > anotherCat.weight) {
score ++;
}
if (this.weight == anotherCat.weight) {
score ++;
xscore ++;
}
}
else {
xscore ++;
}
if (this.strength > anotherCat.strength) {
if (this.strength > anotherCat.strength) {
score ++;
}
else {
xscore ++;
}
if (this.strength == anotherCat.strength) {
score ++;
xscore ++;
}
}
else {
xscore ++;
}
if (score > xscore) {
return true;
}
else {
return false;
}
}
public static void main(String[] args) {
Cat cat1 = new Cat();
cat1.age = 5;
cat1.weight = 5;
cat1.strength = 5;
Cat cat2 = new Cat();
cat2.age = 5;
cat2.weight = 5;
cat2.strength = 4;
cat1.fight(cat2);
cat2.fight(cat1);
System.out.println(cat1.fight(cat2));
System.out.println(cat2.fight(cat1));
}
}