• ItemToPurchase.java - Class definition • ShoppingCartPrinter.java - Contains main() method 2. Build the ItemToPurchase class with the following specifications: • Private fields o String itemName - Initialized in default constructor to "none" o int itemPrice - Initialized in default constructor to 0 o int itemQuantity - Initialized in default constructor to 0 • Default constructor • Public member methods (mutators & accessors) o setName() & getName() o setPrice() & getPrice() o setQuantity() & getQuantity() 3. In main(), prompt the user for two items and create two objects of the ItemToPurchase class. Before prompting for the second item, call scnr.nextLine(); to allow the user to input a new string. Ex: Item 1 Enter the item name: Chocolate Chips Enter the item price: 3 Enter the item quantity: 1 Item 2 Enter the item name: Bottled Water Enter the item price: 1 Enter the item quantity: 10 4. Add the costs of the two items together and output the total cost. Ex: TOTAL COST Chocolate Chips 1 @ $3 = $3 Bottled Water 10 @ $1 = $10 Total: $13

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter10: Introduction To Inheritance
Section: Chapter Questions
Problem 1GZ
icon
Related questions
Question

ISP-JAVA 

Create two files to submit:
• ItemToPurchase.java - Class definition
• ShoppingCartPrinter.java - Contains main() method

2. Build the ItemToPurchase class with the following specifications:
• Private fields
o String itemName - Initialized in default constructor to "none"
o int itemPrice - Initialized in default constructor to 0
o int itemQuantity - Initialized in default constructor to 0
• Default constructor
• Public member methods (mutators & accessors)
o setName() & getName()
o setPrice() & getPrice()
o setQuantity() & getQuantity()

3. In main(), prompt the user for two items and create two objects of the ItemToPurchase class. Before
prompting for the second item, call scnr.nextLine(); to allow the user to input a new string.

Ex:
Item 1
Enter the item name:
Chocolate Chips
Enter the item price:
3
Enter the item quantity:
1

Item 2
Enter the item name:
Bottled Water
Enter the item price:
1
Enter the item quantity:
10

4. Add the costs of the two items together and output the total cost.

Ex:
TOTAL COST
Chocolate Chips 1 @ $3 = $3
Bottled Water 10 @ $1 = $10

Total: $13
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Unreferenced Objects
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT