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:
essay1 with no arguments
essay 2 with essayTitle and essayAuthor as arguments
essay3 with essayTitle, essayAuthor, and essayYear as arguments
Ex: If the input is Parrot Diaz 1920, then the output is:
Essay: NoName, Unnamed, -1
Essay: Parrot, Diaz, -1
Essay: Parrot, Diaz, 1920
import java.util.Scanner;
public class Library {
public static void main(String[] 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 */
essay1.print();
essay2.print();
essav3.orint():
 The Essay class has a default constructor, a constructor with two

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!