Доброго дня! Что сейчас не так? Не выполняется 3 условие.
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 cat1 = 0;
if (this.age>anotherCat.age){
cat1++;
}
else {cat1--;}
if (this.weight>anotherCat.weight){
cat1++;
}
else{cat1--;}
if (this.strength>anotherCat.strength){cat1++;}
else{cat1--;}
boolean i = cat1>0;
return i;
}
public static void main(String[] args) {
Cat cat1 = new Cat();
Cat cat2 = new Cat();
cat1.age = 2;
cat1.weight = 2;
cat1.strength = 2;
cat2.age = 1;
cat2.weight=1;
cat2.strength=1;
System.out.println(cat1.fight(cat2));
}
}