Practicing List Declaration
Fill in the blanks to declare a list called numbers
that stores integer numbers from 1 to 10. Use explicit declaration for declaring the list.
index.cs
12345678910111213using System; using System.Collections.Generic; class Program { static void Main(string[] args) { ___ ___ = ___ ___ { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; foreach (int num in numbers) Console.Write(num + " "); } }
Var alt klart?
Tak for dine kommentarer!
Sektion 1. Kapitel 2
Spørg AI
Spørg AI
Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat
Awesome!
Completion rate improved to 2.04
Practicing List Declaration
Stryg for at vise menuen
Fill in the blanks to declare a list called numbers
that stores integer numbers from 1 to 10. Use explicit declaration for declaring the list.
index.cs
12345678910111213using System; using System.Collections.Generic; class Program { static void Main(string[] args) { ___ ___ = ___ ___ { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; foreach (int num in numbers) Console.Write(num + " "); } }
Var alt klart?
Tak for dine kommentarer!
Sektion 1. Kapitel 2