просит реализовать механизм драки в методе fight
я вроде все реализовал, что я пропустил?
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;
boolean c;
if (this.age>anotherCat.age) {
a++;//напишите тут ваш код
} else b++;
if (this.weight>anotherCat.weight) {
a++;
} else b++;
if (this.strength>anotherCat.strength) {
a++;
} else b++;
if (a>b) {
c = true;
} else c = false;
return c;
}
public static void main(String[] args) {
Cat cat1 = new Cat();
Cat cat2 = new Cat();
}
}