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 main(String[] args){
Scanner scnr = new Scanner(System.in);
/* Variable declaration goes here */
/* Your code goes here */
System.out.println(patientsQueue.remove());
System.out.println(patientsQueue.remove());
System.out.println(patientsQueue.remove());
System.out.println(patientsQueue.remove());
}
}

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 Programming Questions!