ΠΏΠΎΡΠ΅ΠΌΡ Π² ΡΡΠΎΠΌ ΠΏΡΠΈΠΌΠ΅ΡΠ΅ Π½Π΅ΡΠ΅Π°Π»ΠΈΠ·ΠΎΠ²Π°Π» ΠΌΠ΅Ρ
Π°Π½ΠΈΠ·ΠΌ Π΄ΡΠ°ΠΊΠΈ ΠΊΠΎΡΠΎΠ² Π² Π·Π°Π²ΠΈΡΠΈΠΌΠΎΡΡΠΈ ΠΎΡ ΠΈΡ
Π²Π΅ΡΠ°, Π²ΠΎΠ·ΡΠ°ΡΡΠ° ΠΈ ΡΠΈΠ»Ρ ΡΠΎΠ³Π»Π°ΡΠ½ΠΎ ΡΡΠ»ΠΎΠ²ΠΈΡ.
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 (a > b)
return true;
else
return false;
}
public static void main(String[] args) {
}
}