public class Cat { public int age; public int weight; public int strength; public Cat() { } public boolean fight(Cat anotherCat) { //напишите тут ваш код if (this.age+this.weight+this.strength<anotherCat.age+anotherCat.weight+anotherCat.strength) return true; else return false; } public static void main(String[] args) { Cat cat1=new Cat(); cat1.age = 1; cat1.weight = 3; cat1.strength = 5; Cat cat2=new Cat(); cat2.age = 2; cat2.weight = 4; cat2.strength = 6; cat1.fight(cat2); cat2.fight(cat1); } }