Book.java
unknown
java
a year ago
1.3 kB
6
Indexable
public class Book {
private String title;
private String author;
private double userRating;
private int reviews;
private double price;
private int year;
private String genre;
// Constructor
public Book(String title, String author, double userRating, int reviews, double price, int year, String genre) {
this.title = title;
this.author = author;
this.userRating = userRating;
this.reviews = reviews;
this.price = price;
this.year = year;
this.genre = genre;
}
// Getters
public String getTitle() {
return title;
}
public String getAuthor() {
return author;
}
public double getUserRating() {
return userRating;
}
public int getReviews() {
return reviews;
}
public double getPrice() {
return price;
}
public int getYear() {
return year;
}
public String getGenre() {
return genre;
}
// Print details of the book
public void printDetails() {
System.out.println("Title: " + title + ", Author: " + author + ", Rating: " + userRating +
", Reviews: " + reviews + ", Price: $" + price + ", Year: " + year + ", Genre: " + genre);
}
}
Editor is loading...
Leave a Comment