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