subject

Grocery shopping list (LinkedList) Given a ListItem class, complete main() using the built-in LinkedList type to create a linked list called shoppingList. The program should read items from input (ending with -1), adding each item to shoppingList, and output each item in shoppingList using the printNodeData() method.

Ex. If the input is:

milk
bread
eggs
waffles
cereal
-1

the output is:

milk
bread
eggs
waffles
cereal

---ShoppingList. java:
import java. util. Scanner;
import java. util. LinkedList;

public class ShoppingList {
public static void main (String[] args) {
Scanner scnr = new Scanner(System. in);

// TODO: Declare a LinkedList called shoppingList of type ListItem

String item;

// TODO: Scan inputs (items) and add them to the shoppingList LinkedList
// Read inputs until a -1 is input

// TODO: Print the shoppingList LinkedList using the printNodeData() method

}
}

---ListItem. java:
public class ListItem {
private String item;

public ListItem() {
item = "";
}

public ListItem(String itemInit) {
this. item = itemInit;
}

// Print this node
public void printNodeData() {
System. out. println(this. item);
}
}

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 08:10
Technician a says that if a valve is open when a piston rises to the very top of a cylinder, the piston may actually strike the valve head and cause serious engine damage. technician b says if the camshaft is located in the engine block, then the engine is called an overhead valve engine, ohv engine, or an in-block camshaft. who is right? a. b only b. both a and b c. a only d. neither a nor b
Answers: 3
question
Computers and Technology, 23.06.2019 10:00
Now, open this passage to read about fafsa requirements. describe the information you will need to provide in order to complete a fafsa. list at least three of the required documents you must include.
Answers: 3
question
Computers and Technology, 23.06.2019 11:50
While preforming before operation pmcs, you notice the front right tire appears slightly under-inflated. what is the proper action?
Answers: 3
question
Computers and Technology, 23.06.2019 20:00
Match the file formats with the types of multimedia they can store
Answers: 2
You know the right answer?
Grocery shopping list (LinkedList) Given a ListItem class, complete main() using the built-in Linke...
Questions
question
Mathematics, 05.10.2019 21:20
question
History, 05.10.2019 21:20