,делал на основе пройденного, не стал гуглить, если есть может внятно разъяснить помогите!
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 = 3;
int b = 3;
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(a>b)
System.out.println("пашет");
return true;
//напишите тут ваш код
}
public static void main(String[] args) {
Cat cat1=new Cat();
Cat cat2=new Cat();
cat1.age=2;
cat2.age=1;
cat1.weight=3;
cat2.weight=2;
cat1.strength=5;
cat2.strength=5;
}
}