All
Keyword do
Keyword do can be: loop with condition at the end, loop with condition on the beginning, break statement, continue statement, loop with condition at the end until is false, loop with condition on the beginning until is false. Keyword do 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 do you can find in: C C++ Visual C++ .NET C# Java JavaScript PHP
do statement while (condition);
loop with condition at the endKeyword do you can find in: Basic FreeBASIC Visual Basic .NET
do
statements
loop while condition
loop with condition on the beginningKeyword do you can find in: Pascal Object Pascal Free Pascal
while condition do statement;
loop with condition on the beginningKeyword do you can find in: Basic FreeBASIC Visual Basic .NET
do while condition
statements
loop
loop with condition at the end until is falseKeyword do you can find in: Basic FreeBASIC Visual Basic .NET
do
statements
loop until condition
loop with condition on the beginning until is falseKeyword do you can find in: Basic FreeBASIC Visual Basic .NET
do until condition
statements
loop