All
Keyword while
Keyword while can be: loop with condition at the end, loop with condition on the beginning, break statement, continue statement. Keyword while we can find in languages: C, C++, Visual C++ .NET, C#, Java, JavaScript, PHP, Basic, FreeBASIC, Visual Basic .NET, Pascal, Object Pascal, Free Pascalloop with condition at the endKeyword while you can find in: C C++ Visual C++ .NET C# Java JavaScript PHP
do statement while (condition);
loop with condition at the endKeyword while you can find in: Basic FreeBASIC Visual Basic .NET
do
statements
loop while condition
loop with condition on the beginningKeyword while you can find in: C C++ Visual C++ .NET C# Java JavaScript PHP
while (condition) statement
loop with condition on the beginningKeyword while you can find in: Basic FreeBASIC
while condition
statements
wend
loop with condition on the beginningKeyword while you can find in: Pascal Object Pascal Free Pascal
while condition do statement;
loop with condition on the beginningKeyword while you can find in: Visual Basic .NET
while condition
statements
end while
loop with condition on the beginningKeyword while you can find in: Basic FreeBASIC Visual Basic .NET
do while condition
statements
loop