Für Anweisung Syntax C scharf
//this loop will repeat 4 times
for(int i=0; i<4; i++)
{
//do something
}
Daragard
//this loop will repeat 4 times
for(int i=0; i<4; i++)
{
//do something
}
for (int i = 0; i < 5; i++)
{
Console.WriteLine(i);
}