/
FreddDEAGLE
/
DZ_BookPagesPricez
Обзор
Документация
Войти
/
FreddDEAGLE
/
DZ_BookPagesPricez
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Book.java
27 строк
619 B
FreddDEAGLE
BookMAin
10 апр 2025, 22:11
10 апр 2025, 22:11
3c730d8
Код
Авторство
О чём код?
public class Book { String title; String author; int releaseYear; int pages; public Book(String title, String author, int releaseYear, int pages) { this.title = title; this.author = author; this.releaseYear = releaseYear; this.pages = pages; } public boolean isBig() { return pages > 500; } public boolean matches(String word) { return title.contains(word) || author.contains(word); } public int estimatePrice() { int price = 3 * pages; return price > 250 ? price : 250; } }