/
Ilshatt
/
Book
Обзор
Документация
Войти
/
Ilshatt
/
Book
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Main.java
21 строка
578 B
Ilshatt
upload files
07 июн 2025, 17:57
07 июн 2025, 17:57
64f7814
Код
Авторство
О чём код?
public class Main { public static void main (String [] args) { String title; int releaseYear; String author; int pages; Book book = new Book ( title = "The Lord of the Rings", releaseYear = 1954, author = "J.R.R. Tolkien", pages = 1077 ); System.out.println (book.isBig()); System.out.println(book.matches("Rings")); System.out.println(book.matches("J")); System.out.println(book.estimatePrice()); } }