package com.javarush.task.task05.task0502; /* Реализовать метод fight */ public class Cat { public int age; public int weight; public int strength; public Cat(int age, int weight, int strength) { } public boolean fight(Cat anotherCat) { //напишите тут ваш код return ((this.weight*this.strength)/this.age) > ((weight*strength)/age); } public static void main(String[] args) { Cat cat1 = new Cat(2,20,10); Cat cat2 = new Cat(4, 3,5); cat1.fight(cat2); } } Подскажите пожалуйста, что я не так делаю?