Может кто объяснить и подсказать? 1. Почему у меня выполняется условие 7, если при проверке на экран выводится
cat.fight(cat2)
cat2.fight(cat)
false
false
2. Как сделать что-бы кот 10.1.1. побеждал кота 1.1.1???
Мой кот ничего не знает, спрашивал.
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 win = 0;
int win2 = 0;
if (this.age > anotherCat.age) //&& (this.weight == anotherCat.weight))
win++;
//else if (this.age == anotherCat.age)
//win++;
else
win2++;
if (this.weight > anotherCat.weight)
win++;
//else if (this.weight == anotherCat.weight)
//win++;
else
win2++;
if (this.strength > anotherCat.strength)
win++;
//else if (this.strength == anotherCat.strength)
//win++;
else
win2++;
if (win == win2)
return false;
else if (win > win2)
return true;
else
return false;
}
public static void main(String[] args) {
Cat cat1= new Cat ();
cat1.age = 5;
cat1.weight = 2;
cat1.strength = 2;
Cat cat2 = new Cat ();
cat2.age = 5;
cat2.weight = 3;
cat2.strength = 2;
System.out.println(cat1.fight(cat2));
System.out.println(cat2.fight(cat1));
}
}