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 i = 0; int j = 0; if(this.age > anotherCat.age) { i++; } else { j++; } if(this.weight > anotherCat.weight) { i++; } else { j++; } if(this.strength > anotherCat.strength) { i++; } else { j++; } if(i > j) { return true; } else { return false; } } public static void main(String[] args) { } }