cat1.fight(cat2) is returning (true)
cat2.fight(cat1) is returning (false)
how is the last condition still not being met??
package com.codegym.task.task05.task0502;
/*
Implement the fight method
*/
public class Cat {
public int age;
public int weight;
public int strength;
public Cat() {
}
public boolean fight(Cat anotherCat) {
//write your code here
if (this.age < anotherCat.age || this.weight > anotherCat.weight || this.strength > anotherCat.strength){
return true;
}
else {
return false;
}
}
public static void main(String[] args) {
Cat cat1 = new Cat();
cat1.age = 1;
cat1.weight= 10;
cat1.strength= 100;
Cat cat2 = new Cat();
cat2.age = 5;
cat2.weight = 5;
cat2.strength = 85;
System.out.println(cat1.fight(cat2));
System.out.println(cat2.fight(cat1));
}
}