Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте TEST HINT SOLUTION | TEST C# SECTION 1
TEST C# COURSE
course content

Зміст курсу

TEST C# COURSE

TEST C# COURSE

book
TEST HINT SOLUTION

Challenge

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.

cs

index

copy
12345678910111213
using 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 + " "); } }

We declare empty lists by using the List<type> name = new List<type>(); syntax. Initializing a list with some data has a very similar syntax.

  • fw f

  • fd

  • f dsf

cs

index

copy
12345678910111213
using System; using System.Collections.Generic; class Program { static void Main(string[] args) { List<int> numbers = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; foreach (int num in numbers) Console.Write(num + " "); } }

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 2

Запитати АІ

expand
ChatGPT

Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат

course content

Зміст курсу

TEST C# COURSE

TEST C# COURSE

book
TEST HINT SOLUTION

Challenge

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.

cs

index

copy
12345678910111213
using 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 + " "); } }

We declare empty lists by using the List<type> name = new List<type>(); syntax. Initializing a list with some data has a very similar syntax.

  • fw f

  • fd

  • f dsf

cs

index

copy
12345678910111213
using System; using System.Collections.Generic; class Program { static void Main(string[] args) { List<int> numbers = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; foreach (int num in numbers) Console.Write(num + " "); } }

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 2
Ми дуже хвилюємося, що щось пішло не так. Що трапилося?
some-alt