Stef
JCHJava Community | Help. Code. Learn.
•Created by Stef on 3/26/2025 in #java-help
help with hw
Can anyone help me understand this hw assignment?
https://sourceb.in/NEzXX3r2di
Given a base Plant class and a derived Flower class, complete main() to create an ArrayList called myGarden. The ArrayList should be able to store objects that belong to the Plant class or the Flower class. Create a method called printArrayList(), that uses the printInfo() methods defined in the respective classes and prints each element in myGarden. The program should read plants or flowers from input (ending with -1), add each Plant or Flower to the myGarden ArrayList, and output each element in myGarden using the printInfo() method.
Ex. If the input is:
plant Spirea 10
flower Hydrangea 30 false lilac
flower Rose 6 false white
plant Mint 4
-1
the output is:
Plant 1 Information:
Plant name: Spirea
Cost: 10
Plant 2 Information:
Plant name: Hydrangea
Cost: 30
Annual: false
Color of flowers: lilac
Plant 3 Information:
Plant name: Rose
Cost: 6
Annual: false
Color of flowers: white
Plant 4 Information:
Plant name: Mint
Cost: 4
5 replies
JCHJava Community | Help. Code. Learn.
•Created by Stef on 3/25/2025 in #java-help
Given three integers as user inputs that represent the number of bottles of drinks to purchase, to r
https://sourceb.in/GvAJbABEw4
I get this error: Latest submission - 4:28 PM EDT on 03/25/25
Total score: 2 / 10
(1 test hidden)
Open submission's code
1: Compare output
0 / 4
Compare output
Input
5 2 7
Your Output
Expected output
Inventory:
3
0 bottles
Inventory:
1
0 bottles
Output differs. See highlights above.
Special character legend
2: Compare output
0 / 2
Compare output
Input
20 0 0
Your Output
Expected output
Inventory:
6
0 bottles
Inventory: 0 bottles
Output differs. See highlights above.
Special character legend
3: Compare output
0 / 2
Compare output
Input
0 5 10
Your Output
Expected output
Inventory:
20
bottles
Inventory:
15
bottles
Output differs. See highlights above.
Special character legend
4 replies