package javaRush;
public class Cat {
public int age;
public int weight;
public int strength;
public Cat() {
}
public boolean fight(Cat anotherCat) {
if (this.age <= anotherCat.age & this.weight > anotherCat.weight & this.strength > anotherCat.strength) {
System.out.println(true);
return true;
} else {
System.out.println(false);
return false;//write your code here
}
}
public static void main (String[]args){
Cat cat1 = new Cat();
Cat cat2 = new Cat();
cat1.age = 8;
cat1.weight = 14;
cat1.strength = 100;
cat2.age = 10;
cat2.weight = 12;
cat2.strength = 85;
cat1.fight(cat2);
cat2.fight(cat1);
}
}
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) {
if (this.age <= anotherCat.age & this.weight > anotherCat.weight & this.strength > anotherCat.strength) {
// System.out.println(true);
return true;
} else {
// System.out.println(false);
return false;//write your code here
}
}
public static void main(String[] args) {
Cat cat1 = new Cat();
Cat cat2 = new Cat();
cat1.age = 8;
cat1.weight = 14;
cat1.strength = 100;
cat2.age = 10;
cat2.weight = 12;
cat2.strength = 85;
cat1.fight(cat2);
cat2.fight(cat1);
}
}