Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Кошачья бойня
//'main' method must be in a class 'Rextester'. //openjdk version '11.0.5' import java.util.*; import java.lang.*; /* Кошачья бойня */ public class Solution { public static void main(String[] args) { Cat cat1 = new Cat ("Кот1",1,1,1); Cat cat2 = new Cat ("Кот2",2,2,2); Cat cat3 = new Cat ("Кот3",3,3,3); System.out.println(cat1.fight(cat2)); System.out.println(cat1.fight(cat3)); System.out.println(cat2.fight(cat3)); //напишите тут ваш код } public static class Cat { protected String name; protected int age; protected int weight; protected int strength; public Cat(String name, int age, int weight, int strength) { this.name = name; this.age = age; this.weight = weight; this.strength = strength; } public boolean fight(Cat anotherCat) { int ageScore = Integer.compare(this.age, anotherCat.age); int weightScore = Integer.compare(this.weight, anotherCat.weight); int strengthScore = Integer.compare(this.strength, anotherCat.strength); int score = ageScore + weightScore + strengthScore; return score > 0; // return score > 0 ? true : false; } } }
run
|
edit
|
history
|
help
0
calc
1
piglatin
Java - SimpleDateFormat(ting)
ex25
Решето Эратосфена
Problem Name: single_digit
Java
Find Median in Large File of Integers
test1