Вроде все работает, но чувствую, что с условием напутал. В чем ошибка?
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 count1 = 0;
if (this.age>anotherCat.age)
count1++;
if (this.weight>anotherCat.weight)
count1++;
if (this.strength>anotherCat.strength)
count1++;
if (count1>2)
return true;
else
return false;
}
public static void main(String[] args) {
Cat cat1 = new Cat();
cat1.age = 4;
cat1.weight = 4;
cat1.strength = 4;
Cat cat2 = new Cat();
cat2.age = 2;
cat2.weight = 1;
cat2.strength = 3;
System.out.println(cat1.fight(cat2));
System.out.println(cat2.fight(cat1));
}
}