Click here to Skip to main content
16,022,362 members

Comments by Comder (Top 2 by date)

Comder 21-Sep-20 6:23am View    
Show me edited source code.
Comder 21-Sep-20 6:15am View    
I don't want linkedlist. I want only queue. My bluej is showing errors in add and remove.

import java.util.*;
class Queue
{
public static void main(String[] args)
{
Queue a=new Queue();
a.add(8);
a.add(8);
a.add(9);

System.out.println(a);
System.out.println(a.remove());
}
}


Help me. Correct it and resend me.