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