Jump to content
Wikipedia The Free Encyclopedia

Do while loop

From Wikipedia, the free encyclopedia
Programming control flow statement
It has been suggested that this article be merged with For loop and While loop  to Loop (statement) . (Discuss ) Proposed since September 2025.
Do While loop flow diagram
Loop constructs

In computer programming, a do-while loop is a control flow statement that executes a block of code and then either repeats the block or exits the loop depending on a Boolean condition.

The do-while construct consists of a process symbol and a condition. First the code within the block is executed. Then the condition is evaluated. If the condition is true the code within the block is executed again. This repeats until the condition becomes false.

Do-while loops check the condition after the block of code is executed. This control structure can be known as a post-test loop. This means the do-while loop is an exit-condition loop. However a while loop will test the condition before the code within the block is executed.

This means that the code is always executed first and then the expression or test condition is evaluated. This process is repeated as long as the expression evaluates to true. If the expression is false the loop terminates. A while loop sets the truth of a statement as a necessary condition for the code's execution. A do-while loop provides for the action's ongoing execution until the condition is no longer true.

It is possible and sometimes desirable for the condition to always evaluate to be true. This creates an infinite loop. When an infinite loop is created intentionally there is usually another control structure that allows termination of the loop. For example, a break statement would allow termination of an infinite loop.

Some languages may use a different naming convention for this type of loop. For example, the Pascal and Lua languages have a "repeat until" loop, which continues to run until the control expression is true and then terminates. In contrast a "while" loop runs while the control expression is true and terminates once the expression becomes false.

Equivalent constructs

[edit ]
do{
do_work();
}while(condition);

is equivalent to

do_work();
while(condition){
do_work();
}

In this manner, the do ... while loop saves the initial "loop priming" with do_work(); on the line before the while loop.

As long as the continue statement is not used, the above is technically equivalent to the following (though these examples are not typical or modern style used in everyday computers):

while(true){
do_work();
if(!condition){
break;
}
}

or

LOOPSTART:
do_work();
if(condition)gotoLOOPSTART;

Examples

[edit ]
This section's factual accuracy is disputed . Relevant discussion may be found on the talk page. Please help to ensure that disputed statements are reliably sourced. (November 2020) (Learn how and when to remove this message)

These example programs calculate the factorial of 5 using their respective languages' syntax for a do-while loop.

Ada

[edit ]
Further information: Ada (programming language)
with Ada.Integer_Text_IO;
procedure Factorial is
 Counter : Integer := 5;
 Factorial : Integer := 1;
begin
 loop
 Factorial := Factorial * Counter;
 Counter := Counter - 1;
 exit when Counter = 0;
 end loop;
 Ada.Integer_Text_IO.Put (Factorial);
end Factorial;

BASIC

[edit ]
Further information: BASIC

Early BASICs (such as GW-BASIC) used the syntax WHILE/WEND. Modern BASICs such as PowerBASIC provide both WHILE/WEND and DO/LOOP structures, with syntax such as DO WHILE/LOOP, DO UNTIL/LOOP, DO/LOOP WHILE, DO/LOOP UNTIL, and DO/LOOP (without outer testing, but with a conditional EXIT LOOP somewhere inside the loop). Typical BASIC source code:

DimfactorialAsInteger
DimcounterAsInteger
factorial=1
counter=5
Do
factorial=factorial*counter
counter=counter-1
LoopWhilecounter>0
Printfactorial

C, C++, D

[edit ]

The following function finds the first multiple of 7 greater than a given number.

intfirst_multiple_of_7(intn){
do{
n+=1;
}while(n%7!=0);

returnn;
}

Examples

printf("%d\n",first_multiple_of_7(10));// 14
printf("%d\n",first_multiple_of_7(20));// 21
printf("%d\n",first_multiple_of_7(28));// 35

Do-while(0) statements are also commonly used in C macros as a way to wrap multiple statements into a regular (as opposed to compound) statement. It makes a semicolon needed after the macro, providing a more function-like appearance for simple parsers and programmers as well as avoiding the scoping problem with if. It is recommended in CERT C Coding Standard rule PRE10-C.[1]

Fortran

[edit ]
Further information: Fortran

With legacy Fortran 77 there is no DO-WHILE construct but the same effect can be achieved with GOTO:

INTEGER CNT,FACT
CNT=5
FACT=1
1CONTINUE
FACT=FACT*CNT
CNT=CNT-1
IF(CNT.GT.0)GOTO1
PRINT*,FACT
END

Fortran 90 and later supports a DO-While construct, however the test is at the top of the loop. To write a loop with the test at the bottom, an infinite DO construct is used, with an IF-EXIT sequence at the end:

program FactorialProg
integer::counter=5
integer::factorial=1
do
factorial=factorial*counter
counter=counter-1
if(counter<1)exit
 end do
 print*,factorial
end program FactorialProg

Java

[edit ]
Further information: Java (programming language)
intcounter=5;
intfactorial=1;
do{
factorial*=counter--;// Multiply, then decrement.
}while(counter>0);
System.out.printf("The factorial of 5 is %d%n",factorial);

Kotlin

[edit ]

Source:[2]

varcounter=5
varfactorial=1
do{
factorial=factorial*counter
counter=counter-1
}while(counter>1)
println(factorial)


Pascal

[edit ]
Further information: Pascal (programming language)

Pascal uses repeat/until syntax instead of do-while.

factorial:=1;
counter:=5;
repeat
factorial:=factorial*counter;
counter:=counter-1;// In Object Pascal one may use dec (counter);
untilcounter=0;

PL/I

[edit ]
Further information: PL/I

The PL/I DO statement subsumes the functions of the post-test loop (do-until), the pre-test loop (do-while), and the for loop. All functions can be included in a single statement. The example shows only the do-until syntax.

declarecounterfixedinitial(5);
declarefactorialfixedinitial(1);
dountil(counter<=0);
factorial=factorial*counter;
counter=counter-1;
end;
put(factorial);

Python

[edit ]

Python does not have a DO-WHILE loop, but its effect can be achieved by an infinite loop with a breaking condition at the end.

The following function finds the first multiple of 7 greater than a given number.

deffirst_multiple_of_7(n):
 while True:
 n += 1
 if n % 7 == 0:
 break
 return n

Examples

print(first_multiple_of_7(10)) # 14
print(first_multiple_of_7(20)) # 21
print(first_multiple_of_7(28)) # 35

Racket

[edit ]
Further information: Racket (programming language)

In Racket, as in other Scheme implementations, a "named-let" is a popular way to implement loops:

#lang racket
(definecounter5)
(definefactorial1)
(letloop()
(set!factorial(*factorialcounter))
(set!counter(sub1counter))
(when(>counter0)(loop)))
(displaylnfactorial)

Compare this with the first example of the while loop example for Racket. Be aware that a named let can also take arguments.

Racket and Scheme also provide a proper do loop.

(define(factorialn)
(do((countern(-counter1))
(result1(*resultcounter)))
((=counter0)result); Stop condition and return value.
; The body of the do-loop is empty.
))

Smalltalk

[edit ]
Further information: Smalltalk
| counter factorial |
counter := 5.
factorial := 1.
[counter > 0] whileTrue:
 [factorial := factorial * counter.
 counter := counter - 1].
Transcript show: factorial printString

See also

[edit ]

References

[edit ]
  1. ^ "C multi-line macro: do/while(0) vs scope block". Stack Overflow.
  2. ^ "Conditions and loops | Kotlin". Kotlin Help. Retrieved 21 October 2025.
[edit ]
The Wikibook Ada Programming has a page on the topic of: Control

AltStyle によって変換されたページ (->オリジナル) /