Что не так?
package com.javarush.task.task05.task0502;
/*
Реализовать метод fight
*/
public class Cat {
public int age;
public int weight;
public int strength;
public Cat(int age) {
}
public Cat() {
this.age = age;
this.weight = weight;
this.strength = strength;
}
public boolean fight(Cat anotherCat) {
int win = 0;
if (this.age < anotherCat.age){
win++;
}else {
win--;
}
if (this.weight < anotherCat.weight){
win++;
}else {
win--;
}
if (this.strength < anotherCat.strength) {
win++;
}else {
win--;
}
if (win>0){
return true;
}else if(win<0) {
return false;
}else {
return false;
}
}
public static void main(String[] args) {
Cat cat1 = new Cat();
cat1.age = 2;
cat1.weight = 2;
cat1.strength = 3;
Cat cat2 = new Cat();
cat2.age = 2;
cat2.weight = 4;
cat2.strength = 3;
System.out.println(cat1.fight(cat2));
System.out.println(cat2.fight(cat1));
}
}