Зміст курсу
Основи C#
Основи C#
2. Робота з типами даних
Цілісні типи данихОголошення змінних з явним типомЧисла з плаваючою комою та DoubleБулеві значенняПерсонажРядокЗавдання з рядкамиОсновне форматування рядківПрактика форматування рядківОголошення КонстантОснови перетворення типівПрактика Приведення ТипівОсновне перетворення типівОсновна практика кодування
Цикл While
Цикл while схожий на цикл for, однак він використовується, коли потрібно виконувати блок коду повторно на основі умови. Синтаксис циклу while простіший, ніж у циклу for:
Приклад:
main
using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { int i = 0; while(i < 5) { Console.WriteLine(i); i++; } } } }
Although the while
loop may seem very similar to the for
loop at first, In more advanced levels of programming the difference becomes apparent. We might explore the usage of different kinds of loops in the Arrays section.
Note
We can write
true
as the condition of a while-loop to create an infinite loop. But it's not recommended to use.
main
while(true) { Console.WriteLine("Hello World"); }
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 4. Розділ 3