Question: Declare variable patientsQueue as a Queue of type String. Assign patientsQueue with a LinkedList of type String. Read four strings from input and add each
Declare variable patientsQueue as a Queue of type String. Assign patientsQueue with a LinkedList of type String. Read four strings from input and add each string into patientsQueue.
Ex: If the input is Avi Ken Sue Ron, then the output is:
Avi
Ken
Sue
Ron
import java.util.Queue;
import java.util.Scanner;
import java.util.LinkedList;
public class PatientsQueueOfFour
public static void mainString args
Scanner scnr new ScannerSystemin;
Variable declaration goes here
Your code goes here
System.out.printlnpatientsQueueremove;
System.out.printlnpatientsQueueremove;
System.out.printlnpatientsQueueremove;
System.out.printlnpatientsQueueremove;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
