пишет, что возможно забыл импортировать 0_0
так же, ошибка в 4-ом пункте условия
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 c1 = 0;
int c2 = 0;
if (this.age > anotherCat.age) c1++;
else c2++;
if (this.weight > anotherCat.weight) c1++;
else c2++;
if (this.strength > anotherCat.strength) c1++;
else c2++;
if (c1 >= c2) return true;
else return false;
}
public static void main(String[] args) {
/* Сat cat1 = new Cat();
cat1.age = 3;
cat1.weight = 3;
cat1.streangth = 3;
Сat cat2 = new Cat();
cat2.age = 4;
cat2.weight = 2;
cat2.streangth = 6;
System.out.println(cat1.fight(cat2)); */
}
}