×
Log in
Twitter
Gmail
Facebook
.NET Fiddle
and
.NET Academy
shared account
Remember me
Log in
Sign up
or
Reset password
Search Tutorials
Log in
Sign up
About
Twitter
.NET Fiddle
Support
Contact Us
Collections
Exercise: Add items to the queue
< Previous
Next >
Goal
Please add the first 5 primes to the queue.
using System; using System.Collections.Generic; public class Program { public static void Main() { Queue<int> primes = new Queue<int>(); // Your code here } }
Reset
Verify
Page 19 of 31
< Previous
Next >
Loading packages and dependencies