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

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!