Question: The Essay class has a default constructor, a constructor with two parameters, and a constructor with three parameters. Declare the following objects: essay 1 with
The Essay class has a default constructor, a constructor with two parameters, and a constructor with three parameters. Declare
the following objects:
essay with no arguments
essay with essayTitle and essayAuthor as arguments
essay with essayTitle, essayAuthor, and essayYear as arguments
Ex: If the input is Parrot Diaz then the output is:
Essay: NoName, Unnamed,
Essay: Parrot, Diaz,
Essay: Parrot, Diaz,
import java.util.Scanner;
public class Library
public static void mainString args
Scanner scnr new Scanner
System.in;
String essayTitle;
String essayAuthor;
int essayYear;
essayTitle scnr next ;
essayAuthor scnr next ;
essayYear scnr nextInt ;
Your code goes here
essayprint;
essayprint;
essavorint:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
