Друзья! Что-то не так с return, валидатор ругается, что он не там, где должен быть, но других вариантов не вижу. 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 a = 0; int b = 0; if (this.age>anotherCat.age) { a++; } if (this.weight>anotherCat.weight) { a++; } if (this.strength>anotherCat.strength) { a++; } if (this.age<anotherCat.age) { b++; } if (this.weight<anotherCat.weight) { b++; } if (this.strength<anotherCat.strength) { b++; } if (a>b) { return true; } if (a<b) { return false; } if (a==b) { return false; } } public static void main(String[] args) { } }