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 countThis=0;
    int countAnother = 0;

    if (this.age > anotherCat.age) {
        countThis =countThis+1;
    }else{
        countAnother= countAnother+1;
    }


    if (this.weight > anotherCat.weight) {
        countThis = countThis+1;
    }else{
        countAnother= countAnother+1;
    }


    if (this.strength > anotherCat.strength) {
        countThis=countThis+1;
    }else{
        countAnother=countAnother+1;
    }

    if(countThis >= countAnother){
        return true;
    }
    else{
        return false;
    }



    }

    public static void main(String[] args) {


    }
}