?
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 countOurCat = 0;
int countAnotherCat = 0;
if(this.weight>anotherCat.weight) {countOurCat ++;}
else if (this.weight==anotherCat.weight) {
countAnotherCat ++;
countOurCat ++; }
else countAnotherCat ++;
if(this.age>anotherCat.age) countOurCat ++;
else if(this.age==anotherCat.age){ countOurCat ++;
countAnotherCat ++;}
else countAnotherCat ++;
if(this.strength>anotherCat.strength) countOurCat++;
else if(this.strength>anotherCat.strength) {countAnotherCat ++;countOurCat++; }
if (countOurCat==countAnotherCat)
return false;
else if(countOurCat > countAnotherCat)
return true;
else return false;
}
public static void main(String[] args) {
Cat cat1 = new Cat();
cat1.age = 1;
cat1.weight = 1;
cat1.strength = 2;
Cat cat2 = new Cat();
cat2.age = 2;
cat2.weight = 2;
cat2.strength = 1;
System.out.println(cat1.fight(cat2));
System.out.println(cat2.fight(cat1));
}
}