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 cAt1 = 0; int cAt2 = 0; if (this.age > anotherCat.age){ cAt1++;} else if (this.age < anotherCat.age){ cAt2++;} else if (this.weight > anotherCat.weight){ cAt1++;} else if (this.weight < anotherCat.weight){ cAt2++;} else if (this.strength > anotherCat.strength){ cAt1++;} else if (this.strength < anotherCat.strength){ cAt2++;} return cAt1>cAt2; } public static void main(String[] args) { Cat cat1 = new Cat(); Cat cat2 = new Cat(); cat1.age = 1; cat1.weight = 3; cat1.strength = 5; cat1.fight(cat2); cat2.age = 2; cat2.weight = 4; cat2.strength = 6; cat2.fight(cat1); System.out.println(cat1); System.out.println(cat2); } }