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