Book

Report a typo

Here's a class named Book. It has three fields: a string field title, an int field yearOfPublishing and an array of strings authors.

Write getters and setters for all fields.

Write a program in Java 17
class Book {

private String title;
private int yearOfPublishing;
private String[] authors;
}
___

Create a free account to access the full topic