/
1091950
/
Task4
Обзор
Документация
Войти
/
1091950
/
Task4
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Book.java
28 строк
717 B
1091950
upload files
04 ноя 2025, 18:01
04 ноя 2025, 18:01
3ccaf55
Код
Авторство
О чём код?
public class Book { public String title; public int releaseYear; public String author; public int pages; public Book (String title, int releaseYear, String author, int pages) { this.title = title; this.releaseYear = releaseYear; this.author = author; this.pages = pages; } public boolean isBig () { return pages > 500; } public boolean matches(String word) { return title.toLowerCase().contains(word.toLowerCase()) || author.toLowerCase().contains(word.toLowerCase()); } public int estimatePrice() { int price = pages * 3; return Math.max(price, 250); } }