Question: Complete each TODO task in the file TextbookDriver.java . [Check out Rectangle.java and RectangleDemo.java in the Code Examples folder for a simple example of a
Complete each "TODO" task in the file TextbookDriver.java. [Check out Rectangle.java and RectangleDemo.java in the Code Examples folder for a simple example of a class and a demo of the class.]
If you complete the lab during recitation, compile and run the driver program, TextbookDriver.java, for the TA to get credit. If you complete the lab outside of recitation (and before the deadline), demonstrate the driver to the TA to get credit.


public class TextbookDriver public static void main(String[ ] args) // TODO: Create a Textbook object called classicLiterature with the following properties. // title: "Crime and Punishment", author: "Fyodor Dostoyevsky", price: 5.99 // TODO: Create a Textbook object called mathTextbook with the following properties // title: "Calculus", author: "James Stewart", price: 230.0 // TODO: Create a Textbook object called compSciTextbook with the following properties. // title: "Algorithms", author: "Robert Sedgewick and Kevin Wayne", price: 67.5 // TODO: Add a toString() method to the Textbook class. Then call the toString() method // on each object in one or more print statements. // The toString() method should print the field values for the object. // Example: // title: Crime and Punishment // author: Fyodor Dostoyevsky // price: $230.0 // NOTE: You do not need to print 2 decimal places for the price
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
