/
akupan2012
/
zadaniebook
Обзор
Документация
Войти
/
akupan2012
/
zadaniebook
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Book.java
29 строк
758 B
akupan2012
upload files
29 окт 2025, 17:49
29 окт 2025, 17:49
0494ace
Код
Авторство
О чём код?
public class Book { public String author; // автор public String title; // название книги; public int releaseYear; // год выпуска public int pages; // количество страниц. public Book(String author, int pages, int releaseYear, String title) { this.author = author; this.pages = pages; this.releaseYear = releaseYear; this.title = title; } 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 Math.max(250, price); } }