в чем проблема, господа?
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) {
//напишите тут ваш код
Cat a=new Cat();
Cat b=new Cat();
int q=0;
int p=0;
if (this.strength==anotherCat.strength){
q++;
p++;
}
else if (this.strength>anotherCat.strength){
q++;
}
else if (this.strength<anotherCat.strength){
p++;
}
else if (this.age==anotherCat.age){
q=q+1;
p=p+1;
}
else if (this.age>anotherCat.age){
q++;
}
else if (this.age<anotherCat.age){
p++;
}
else if (this.weight==anotherCat.weight){
p++;
q++;
}
else if (this.weight>anotherCat.weight){
q++;
}
else if (this.weight<anotherCat.weight){
p++;
}
if (q>p) {
return true;
}
else {
return false;
}
}
public static void main(String[] args) {
Cat cat1 = new Cat ();
Cat cat2 = new Cat();
cat1.age = 3;
cat2.age = 3;
cat1.weight = 3;
cat2.weight = 3;
cat1.strength = 3;
cat2.strength = 3;
System.out.println(cat1.fight(cat2));
System.out.println(cat2.fight(cat1));
}
}