Question
How do I select arraylist? int score =0; Item groceryItem[] = { new Item(Banana), new Item( Apple), new Item( Orange ); private useBanana() { score
How do I select arraylist?
int score =0;
Item groceryItem[] = { new Item("Banana"), new Item( "Apple"), new Item( "Orange ");
private useBanana()
{
score = score + 10;
System.out.println("Score: " + score);
}
private useApple()
{
score = score + 5;
System.out.println("Score: " + score);
}
private useOrange()
{
score = score + 20;
System.out.println("Score: " + score);
}
for (Item item: groceryItem){ if (item.getItemName().equalsIgnoreCase("banana")){ useBattery();
if (item.getItemName().equalsIgnoreCase("apple")){ usApple();
if (item.getItemName().equalsIgnoreCase("orange")){ useOrange(); } }
Example output:
Items:
1. Apple
2. Banana
3. Orange
>Apple
Score: 5
>Banana
Score: 15
help? my code doesnt work :( it keeps using all method instead of one method only :(
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started