короче не получается че делать
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{
b++;
}
if(this.weight>anotherCat.weight){
a++;
}else{
b++;
}
if(this.strength>anotherCat.strength){
a++;
}else{
b++;
}
if (b<a){
return true;
}else {
return false;
}
}
public static void main(String[] args) {
Cat cat1 = new Cat();
cat1.age = 5;
cat1.weight = 20;
cat1.strength = 90;
Cat cat2 = new Cat();
cat2.age = 4;
cat2.weight = 30;
cat2.strength = 100;
System.out.println(cat1.fight(cat2));
}
}