RosettaCodeData/Task/Loops-Do-while/C-sharp/loops-do-while.cs

8 lines
77 B
Smalltalk

int a = 0;
do
{
a += 1;
Console.WriteLine(a);
} while (a % 6 != 0);