pause at 1:18

This commit is contained in:
2026-01-12 21:20:19 +01:00
parent cbf6c4fb62
commit 673159a18e
4 changed files with 128 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Loops
## while
```C#
String name = "";
while(name == ""){
name = Console.Readline();
}
Console.WriteLine("hello " + name);
```
## for
```C#
for (int i = 0; i < 10 ; i++)
{
Console.WriteLine(i)
}
```