CJCoding With Joseph

Number Queue Class

Create a class NumberQueue that behaves first-in first-out. Use a private List<int> to hold the values. Enqueue(int value) adds to the back; Dequeue() removes and returns the value at the front. Do not write a Main method.

After enqueuing 1, 2, 3 and dequeuing twice, the program prints:
1
2

Expected Output:

1
2
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.