Валидатор ругается на метод main, что мол, отсутствует объявление метода в 39 строке.
Что не так? Нужно ли заполнять main (вроде в условии этого нет?)
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;
if(this.age > anotherCat.age){a++;}
else if(this.age == anotherCat.age)
{a++; b++;}
else
{b++;}
if(this.weight > anotherCat.weight)
{a++;}
else if(this.weight == anotherCat.weight)
{a++; b++;}
else
{b++;}
if(this.strength > anotherCat.strength)
{a++;}
else if(this.strength == anotherCat.strength)
{a++; b++;}
else
{b++;}
if (a > b) return true;
else return false;
//напишитe
}
public static void main(String[] args) {
}
}