Loops/Break: Difference between revisions

39,039 bytes added ,  2 months ago
 
(97 intermediate revisions by 61 users not shown)
Line 12:
 
;Related tasks:
*   [[Loop over multiple arrays simultaneously]]
*   [[Loops/Break]]
*   [[Loops/Continue]]
*   [[Loops/Do-while]]
*   [[Loops/Downward for]]
*   [[Loops/For]]
*   [[Loops/For with a specified step]]
*   [[Loops/Foreach]]
*   [[Loops/Increment loop index within loop body]]
*   [[Loops/Infinite]]
*   [[Loops/N plus one half]]
*   [[Loops/Nested]]
*   [[Loops/While]]
*   [[Loops/with multiple ranges]]
<br><br>
 
=={{header|11l}}==
{{trans|Python}}
<syntaxhighlight lang="11l">L
V a = random:(20)
print(a)
I a == 10
L.break
V b = random:(20)
print(b)</syntaxhighlight>
 
=={{header|360 Assembly}}==
<langsyntaxhighlight lang="360asm">* Loops Break 15/02/2017
LOOPBREA CSECT
USING LOOPBREA,R13 base register
Line 66 ⟶ 77:
XDEC DS CL12
YREGS
END LOOPBREA</langsyntaxhighlight>
{{out}}
<pre>
Line 83 ⟶ 94:
=={{header|6502 Assembly}}==
Code is called as a subroutine (i.e. JSR LoopBreakSub). Specific OS/hardware routines for generating random numbers and printing are left unimplemented.
<langsyntaxhighlight lang="6502asm">LoopBreakSub: PHA ;push accumulator onto stack
 
 
Line 99 ⟶ 110:
 
Break: PLA ;restore accumulator from stack
RTS ;return from subroutine</langsyntaxhighlight>
=={{header|AArch64 Assembly}}==
{{works with|as|Raspberry Pi 3B version Buster 64 bits}}
<syntaxhighlight lang="aarch64 assembly">
/* ARM assembly AARCH64 Raspberry PI 3B */
/* program loopbreak64.s */
/*******************************************/
/* Constantes file */
/*******************************************/
/* for this file see task include a file in language AArch64 assembly*/
.include "../includeConstantesARM64.inc"
 
/*********************************/
/* Initialized data */
/*********************************/
.data
szMessEndLoop: .asciz "loop break with value : \n"
szMessResult: .asciz "Resultat = @ \n" // message result
 
.align 4
qGraine: .quad 12345678
/*********************************/
/* UnInitialized data */
/*********************************/
.bss
sZoneConv: .skip 24
/*********************************/
/* code section */
/*********************************/
.text
.global main
main: // entry of program
1: // begin loop
mov x4,20
2:
mov x0,19
bl genereraleas // generate number
cmp x0,10 // compar value
beq 3f // break if equal
ldr x1,qAdrsZoneConv // display value
bl conversion10 // call function with 2 parameter (x0,x1)
ldr x0,qAdrszMessResult
ldr x1,qAdrsZoneConv
bl strInsertAtCharInc // insert result at third @ character
bl affichageMess // display message final
subs x4,x4,1 // decrement counter
bgt 2b // loop if greather
b 1b // begin loop one
3:
mov x2,x0 // save value
ldr x0,qAdrszMessEndLoop
bl affichageMess // display message
mov x0,x2
ldr x1,qAdrsZoneConv
bl conversion10 // call function with 2 parameter (x0,x1)
ldr x0,qAdrszMessResult
ldr x1,qAdrsZoneConv
bl strInsertAtCharInc // insert result at third @ character
bl affichageMess // display message
100: // standard end of the program
mov x0,0 // return code
mov x8,EXIT // request to exit program
svc 0 // perform the system call
qAdrsZoneConv: .quad sZoneConv
qAdrszMessResult: .quad szMessResult
qAdrszMessEndLoop: .quad szMessEndLoop
/***************************************************/
/* Generation random number */
/***************************************************/
/* x0 contains limit */
genereraleas:
stp x1,lr,[sp,-16]! // save registers
stp x2,x3,[sp,-16]! // save registers
ldr x3,qAdrqGraine // load graine
ldr x2,[x3]
lsr x1,x2,17 // see xorshift on wikipedia
eor x2,x2,x1
lsl x1,x2,31
eor x2,x2,x1
lsr x1,x2,8
eor x1,x2,x1
str x1,[x3] // save graine for the next call
udiv x1,x2,x0 // divide by value maxi
msub x0,x1,x0,x2 // résult = remainder
100: // end function
ldp x2,x3,[sp],16 // restaur 2 registers
ldp x1,lr,[sp],16 // restaur 2 registers
ret // return to address lr x30
/********************************************************************/
qAdrqGraine: .quad qGraine
/********************************************************/
/* File Include fonctions */
/********************************************************/
/* for this file see task include a file in language AArch64 assembly */
.include "../includeARM64.inc"
</syntaxhighlight>
{{output}}
<pre>
Resultat = 1
Resultat = 8
Resultat = 11
Resultat = 11
Resultat = 5
Resultat = 3
Resultat = 5
Resultat = 12
Resultat = 18
Resultat = 14
loop break with value :
Resultat = 10
</pre>
=={{header|Action!}}==
<syntaxhighlight lang="action!">PROC Main()
BYTE v
 
PrintE("Before loop")
DO
v=Rand(20)
PrintBE(v)
IF v=10 THEN
EXIT
FI
OD
PrintE("After loop")
RETURN</syntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Break.png Screenshot from Atari 8-bit computer]
<pre>
Before loop
2
6
3
4
11
17
5
17
10
After loop
</pre>
 
=={{header|Ada}}==
<langsyntaxhighlight Adalang="ada">with Ada.Text_IO; use Ada.Text_IO;
with Ada.Numerics.Discrete_Random;
 
Line 119 ⟶ 274:
Put_Line (Value_Type'Image (B));
end loop;
end Test_Loop_Break;</langsyntaxhighlight>
 
=={{header|Aime}}==
<langsyntaxhighlight lang="aime">integer
main(void)
{
Line 141 ⟶ 296:
 
return 0;
}</langsyntaxhighlight>
 
=={{header|ALGOL 60}}==
{{works with|ALGOL 60|OS/360}}
<syntaxhighlight lang="algol60">'BEGIN' 'COMMENT' Loops/Break - ALGOL60 - 18/06/2018;
'INTEGER' SEED;
'INTEGER' 'PROCEDURE' RANDOM(N);
'VALUE' N; 'INTEGER' N;
'BEGIN'
SEED:=(SEED*19157+12347) '/' 21647;
RANDOM:=SEED-(SEED '/' N)*N+1
'END' RANDOM;
'INTEGER' I,J,K;
SYSACT(1,6,120);SYSACT(1,8,60);SYSACT(1,12,1);'COMMENT' open print;
SEED:=31567;
J:=0;
'FOR' I:=1, I+1 'WHILE' I 'LESS' 100 'DO' 'BEGIN'
J:=J+1;
K:=RANDOM(20);
OUTINTEGER(1,K);
'IF' J=8 'THEN' 'BEGIN'
SYSACT(1,14,1); 'COMMENT' skip line;
J:=0
'END';
'IF' K=10 'THEN' 'GOTO' LAB
'END';
LAB:
SYSACT(1,14,1); 'COMMENT' skip line;
'END'</syntaxhighlight>
{{out}}
<pre>
+17 +4 +20 +3 +16 +5 +1 +17
+11 +2 +12 +5 +7 +6 +10
</pre>
 
=={{header|ALGOL 68}}==
Line 148 ⟶ 336:
{{wont work with|ALGOL 68G|Any - in a68G next random takes no seed argument}}
{{works with|ELLA ALGOL 68|Any (with appropriate job cards)}}
<langsyntaxhighlight lang="algol68">main: (
INT a, b;
INT seed := 4; # chosen by a fair dice roll, guaranteed to be random c.f. http://xkcd.com/221/ #
Line 160 ⟶ 348:
OD;
print(new line)
)</langsyntaxhighlight>
{{out}}
<pre style="height:25ex;overflow:scroll">
Line 192 ⟶ 380:
+7 +4
+10
</pre>
 
=={{header|Amazing Hopper}}==
<p>Flavour "Jambo"</p>
<syntaxhighlight lang="c">
#include <jambo.h>
 
Main
Loop
Break if ' Int rand(20) ---show--- Is equal to (10) '
Printnl ( "--", Int rand(20) )
Back
Print '"\nEnd of Loop\n" '
End
 
</syntaxhighlight>
<p>Assembler Hopper version of this program:</p>
<syntaxhighlight lang="amazing hopper">
main:
____CODE_JUMP____997416047:,
;{20};rand;int;show;eqto(10);jt(____CODE_JUMP____803885359)
 
{"--"};{20};rand;int;{"\n"}print;
,jmp(____CODE_JUMP____997416047),____CODE_JUMP____803885359:,
{"\nEnd of Loop\n"};print;
emptystack?do{{0}};return
</syntaxhighlight>
{{out}}
<pre>
xxxx@debian:~/Proy$ hopper3 jm/rand.jambo
11--19
4--4
1--9
0--13
19--18
12--6
10
End of Loop
xxxx@debian:~/Proy$ hopper3 jm/rand.jambo
19--10
10
End of Loop
xxxx@debian:~/Proy$ hopper3 jm/rand.jambo
10
End of Loop
xxxx@debian:~/Proy$ hopper3 jm/rand.jambo
0--14
7--1
18--11
15--15
17--9
7--1
10
End of Loop
xxxx@debian:~/Proy$ hopper3 jm/rand.jambo
13--0
17--12
16--2
19--14
2--6
19--10
10
End of Loop
xxxx@debian:~/Proy$
</pre>
 
=={{header|AppleScript}}==
<langsyntaxhighlight AppleScriptlang="applescript">repeat
set a to random number from 0 to 19
if a is 10 then
Line 203 ⟶ 455:
set b to random number from 0 to 19
log a & b
end repeat</langsyntaxhighlight>
 
 
Line 251 ⟶ 503:
 
=={{header|Arc}}==
<langsyntaxhighlight Arclang="arc">(point break
(while t
(let x (rand 20)
Line 257 ⟶ 509:
(if (is x 10)
(break)))
(prn "b: " (rand 20))))</langsyntaxhighlight>
 
=={{header|ARM Assembly}}==
{{works with|as|Raspberry Pi}}
<syntaxhighlight lang="arm assembly">
 
/* ARM assembly Raspberry PI */
/* program loopbreak.s */
 
/* Constantes */
.equ STDOUT, 1 @ Linux output console
.equ EXIT, 1 @ Linux syscall
.equ WRITE, 4 @ Linux syscall
 
/*********************************/
/* Initialized data */
/*********************************/
.data
szMessEndLoop: .asciz "loop break with value : \n"
szMessResult: .ascii "Resultat = " @ message result
sMessValeur: .fill 12, 1, ' '
.asciz "\n"
.align 4
iGraine: .int 123456
/*********************************/
/* UnInitialized data */
/*********************************/
.bss
/*********************************/
/* code section */
/*********************************/
.text
.global main
main: @ entry of program
push {fp,lr} @ saves 2 registers
1: @ begin loop
mov r4,#20
2:
mov r0,#19
bl genereraleas @ generate number
cmp r0,#10 @ compar value
beq 3f @ break if equal
ldr r1,iAdrsMessValeur @ display value
bl conversion10 @ call function with 2 parameter (r0,r1)
ldr r0,iAdrszMessResult
bl affichageMess @ display message
subs r4,#1 @ decrement counter
bgt 2b @ loop if greather
b 1b @ begin loop one
3:
mov r2,r0 @ save value
ldr r0,iAdrszMessEndLoop
bl affichageMess @ display message
mov r0,r2
ldr r1,iAdrsMessValeur
bl conversion10 @ call function with 2 parameter (r0,r1)
ldr r0,iAdrszMessResult
bl affichageMess @ display message
 
100: @ standard end of the program
mov r0, #0 @ return code
pop {fp,lr} @restaur 2 registers
mov r7, #EXIT @ request to exit program
svc #0 @ perform the system call
 
iAdrsMessValeur: .int sMessValeur
iAdrszMessResult: .int szMessResult
iAdrszMessEndLoop: .int szMessEndLoop
/******************************************************************/
/* display text with size calculation */
/******************************************************************/
/* r0 contains the address of the message */
affichageMess:
push {r0,r1,r2,r7,lr} @ save registres
mov r2,#0 @ counter length
1: @ loop length calculation
ldrb r1,[r0,r2] @ read octet start position + index
cmp r1,#0 @ if 0 its over
addne r2,r2,#1 @ else add 1 in the length
bne 1b @ and loop
@ so here r2 contains the length of the message
mov r1,r0 @ address message in r1
mov r0,#STDOUT @ code to write to the standard output Linux
mov r7, #WRITE @ code call system "write"
svc #0 @ call systeme
pop {r0,r1,r2,r7,lr} @ restaur des 2 registres */
bx lr @ return
/******************************************************************/
/* Converting a register to a decimal */
/******************************************************************/
/* r0 contains value and r1 address area */
conversion10:
push {r1-r4,lr} @ save registers
mov r3,r1
mov r2,#10
 
1: @ start loop
bl divisionpar10 @ r0 <- dividende. quotient ->r0 reste -> r1
add r1,#48 @ digit
strb r1,[r3,r2] @ store digit on area
sub r2,#1 @ previous position
cmp r0,#0 @ stop if quotient = 0 */
bne 1b @ else loop
@ and move spaces in first on area
mov r1,#' ' @ space
2:
strb r1,[r3,r2] @ store space in area
subs r2,#1 @ @ previous position
bge 2b @ loop if r2 >= zéro
 
100:
pop {r1-r4,lr} @ restaur registres
bx lr @return
/***************************************************/
/* division par 10 signé */
/* Thanks to http://thinkingeek.com/arm-assembler-raspberry-pi/*
/* and http://www.hackersdelight.org/ */
/***************************************************/
/* r0 dividende */
/* r0 quotient */
/* r1 remainder */
divisionpar10:
/* r0 contains the argument to be divided by 10 */
push {r2-r4} /* save registers */
mov r4,r0
mov r3,#0x6667 @ r3 <- magic_number lower
movt r3,#0x6666 @ r3 <- magic_number upper
smull r1, r2, r3, r0 @ r1 <- Lower32Bits(r1*r0). r2 <- Upper32Bits(r1*r0)
mov r2, r2, ASR #2 /* r2 <- r2 >> 2 */
mov r1, r0, LSR #31 /* r1 <- r0 >> 31 */
add r0, r2, r1 /* r0 <- r2 + r1 */
add r2,r0,r0, lsl #2 /* r2 <- r0 * 5 */
sub r1,r4,r2, lsl #1 /* r1 <- r4 - (r2 * 2) = r4 - (r0 * 10) */
pop {r2-r4}
bx lr /* leave function */
 
/***************************************************/
/* Generation random number */
/***************************************************/
/* r0 contains limit */
genereraleas:
push {r1-r4,lr} @ save registers
ldr r4,iAdriGraine
ldr r2,[r4]
ldr r3,iNbDep1
mul r2,r3,r2
ldr r3,iNbDep1
add r2,r2,r3
str r2,[r4] @ maj de la graine pour l appel suivant
 
mov r1,r0 @ divisor
mov r0,r2 @ dividende
bl division
mov r0,r3 @ résult = remainder
100: @ end function
pop {r1-r4,lr} @ restaur registers
bx lr @ return
/********************************************************************/
iAdriGraine: .int iGraine
iNbDep1: .int 0x343FD
iNbDep2: .int 0x269EC3
/***************************************************/
/* integer division unsigned */
/***************************************************/
division:
/* r0 contains dividend */
/* r1 contains divisor */
/* r2 returns quotient */
/* r3 returns remainder */
push {r4, lr}
mov r2, #0 @ init quotient
mov r3, #0 @ init remainder
mov r4, #32 @ init counter bits
b 2f
1: @ loop
movs r0, r0, LSL #1 @ r0 <- r0 << 1 updating cpsr (sets C if 31st bit of r0 was 1)
adc r3, r3, r3 @ r3 <- r3 + r3 + C. This is equivalent to r3 <- (r3 << 1) + C
cmp r3, r1 @ compute r3 - r1 and update cpsr
subhs r3, r3, r1 @ if r3 >= r1 (C=1) then r3 <- r3 - r1
adc r2, r2, r2 @ r2 <- r2 + r2 + C. This is equivalent to r2 <- (r2 << 1) + C
2:
subs r4, r4, #1 @ r4 <- r4 - 1
bpl 1b @ if r4 >= 0 (N=0) then loop
pop {r4, lr}
bx lr
 
 
 
</syntaxhighlight>
 
=={{header|Arturo}}==
 
<syntaxhighlight lang="rebol">while ø [
a: random 0 19
prints [a ""]
if a=10 -> break
 
b: random 0 19
print b
]
print ""</syntaxhighlight>
 
{{out}}
 
<pre>11 1
11 16
19 14
17 0
18 11
9 9
1 15
5 5
1 16
7 10
10 </pre>
 
=={{header|AutoHotkey}}==
<syntaxhighlight lang="autohotkey">Loop
<lang AutoHotkey>Loop
{
Random, var, 0, 19
Line 269 ⟶ 737:
output = %output%`n%var%
}
MsgBox % output</langsyntaxhighlight>
 
=={{header|Avail}}==
<syntaxhighlight lang="avail">rng ::= a pRNG;
checked : [0..19];
Do [
checked : = rng's next [0..19];
Print: “checked”;
] while checked ≠ 10 alternate with [
Print: " " ++ “rng's next [0..19]” ++ "\n";
];</syntaxhighlight>
 
This demonstrates two interesting Avail features: the ''alternate with'' loop structures, which provide two separate code blocks that are run with a check in between, and the random number generator's ability to pick an item from the ranger of a given number type (<code>[0..19]</code> is an expression generating a ''type'' whose values are integers in the range 0-19 inclusive).
 
=={{header|AWK}}==
<langsyntaxhighlight lang="awk">BEGIN {
srand() # randomize the RNG
for (;;) {
print n = int(rand() * 20)
Line 279 ⟶ 760:
print int(rand() * 20)
}
}</langsyntaxhighlight>
 
=={{header|Axe}}==
Because Axe only supports breaking out of loops as end conditions, the behavior must be simulated using a return statement. Note, however, that this will exit the current call context, not the necessarily just the current loop.
 
<langsyntaxhighlight lang="axe">While 1
rand^20→A
Disp A▶Dec
Line 290 ⟶ 771:
rand^20→B
Disp B▶Dec,i
End</langsyntaxhighlight>
 
=={{header|BASIC}}==
==={{header|Applesoft BASIC}}===
 
<syntaxhighlight lang="gwbasic">FOR I = 0 TO 1 STEP 0 : N = INT(RND(1) * 20) : PRINT " "N; : IF N <> 10 THEN ? ","INT(RND(1) * 20); : NEXT</syntaxhighlight>
==={{header|BaCon}}===
<langsyntaxhighlight lang="freebasic">
REPEAT
number = RANDOM(20)
Line 303 ⟶ 785:
ENDIF
PRINT "second ",RANDOM(20)
UNTIL FALSE</langsyntaxhighlight>
 
==={{header|BASIC256}}===
<syntaxhighlight lang="basic256">do
i = int(rand * 19)
print i; " ";
if i = 10 then exit do
i = int(rand * 19)
print i; " ";
until false
print
end</syntaxhighlight>
 
==={{header|bootBASIC}}===
In bootBASIC, the rnd statement returns an unsigned integer between 0 and 255. 255 divided by 19 gives us 13 without the fraction part, so 13 is the number to divide the random number by to get a range of 0 to 19. All division is integer division.
<syntaxhighlight lang="BASIC">
10 a=rnd/13
20 print a ;
30 if a-10 goto 50
40 goto 100
50 a=rnd/13
55 print ", ";
60 print a
70 goto 10
100 print
</syntaxhighlight>
{{out}}
<pre>
13, 19
11, 14
18, 4
17, 0
12, 15
0, 13
7, 19
2, 7
1, 3
6, 18
13, 6
9, 10
4, 7
15, 7
10
</pre>
 
==={{header|Commodore BASIC}}===
In Commodore BASIC, the function RND() generates a floating point number from 0.0 to 1.0 (exclusive).
<langsyntaxhighlight lang="commodorebasic">10 X = RND(-TI) : REM SEED RN GENERATOR
20 A = INT(RND(1)*20)
30 PRINT A
Line 314 ⟶ 839:
60 PRINT B
70 GOTO 20
80 END</langsyntaxhighlight>
 
==={{header|IS-BASIC}}===
<syntaxhighlight lang="is-basic">100 RANDOMIZE
110 DO
120 LET A=RND(20)+1
130 PRINT A,
140 IF A=10 THEN EXIT DO
150 PRINT RND(20)+1
160 LOOP</syntaxhighlight>
 
==={{header|QuickBASIC}}===
{{works with|QuickBasic|4.5}}
<langsyntaxhighlight lang="qbasic">do
a = int(rnd * 20)
print a
Line 324 ⟶ 858:
b = int(rnd * 20)
print b
loop</langsyntaxhighlight>
 
 
=== {{header|ZX Spectrum Basic}} ===
==={{header|True BASIC}}===
<syntaxhighlight lang="basic">RANDOMIZE
 
DO
LET i = INT(RND * 19)
PRINT i; " ";
IF i = 10 THEN
EXIT DO
END IF
LET i = INT(RND * 19)
PRINT i; " ";
LOOP
PRINT
END</syntaxhighlight>
 
 
==={{header|uBasic/4tH}}===
In uBasic/4tH '''UNTIL''' ''<cond>'' is equivalent to '''IF''' ''<cond>'' '''THEN BREAK'''. You can add as many '''UNTIL''' and '''WHILE''' as required in '''FOR..NEXT''' or '''DO..LOOP''' loops.
<syntaxhighlight lang="qbasic">Do
n = Rnd(20)
Print n
Until n=10
Print Rnd(20)
Loop</syntaxhighlight>
==={{header|ZX Spectrum Basic}}===
On the ZX Spectrum, for loops must be terminated through the NEXT statement, otherwise a memory leak will occur. To terminate a loop prematurely, set the loop counter to the last iterative value and jump to the NEXT statement:
 
<langsyntaxhighlight lang="zxbasic">10 FOR l = 1 TO 20
20 IF l = 10 THEN LET l = 20: GO TO 40: REM terminate the loop
30 PRINT l
40 NEXT l
50 STOP</langsyntaxhighlight>
 
The correct solution:
 
<langsyntaxhighlight lang="zxbasic">10 LET a = INT (RND * 20)
20 PRINT a
30 IF a = 10 THEN STOP
40 PRINT INT (RND * 20)
50 GO TO 10</langsyntaxhighlight>
 
=={{header|Batch File}}==
<langsyntaxhighlight lang="dos">@echo off
:loop
set /a N=%RANDOM% %% 20
Line 351 ⟶ 910:
set /a N=%RANDOM% %% 20
echo %N%
goto loop</langsyntaxhighlight>
 
=={{header|BBC BASIC}}==
{{works with|BBC BASIC for Windows}}
<langsyntaxhighlight lang="bbcbasic"> REPEAT
num% = RND(20)-1
PRINT num%
IF num%=10 THEN EXIT REPEAT
PRINT RND(20)-1
UNTIL FALSE</langsyntaxhighlight>
 
=={{header|bc}}==
<langsyntaxhighlight lang="bc">s = 1 /* seed of the random number generator */
scale = 0
 
Line 385 ⟶ 944:
r() /* print 2nd number */
}
quit</langsyntaxhighlight>
 
=={{header|Befunge}}==
<syntaxhighlight lang="befunge">
>60v *2\<
>?>\1-:|
1+ $
>^ 7
v.:%++67<
>55+-#v_@
>60v *2\<
>?>\1-:|
1+ $
>^ 7
^ .%++67<
</syntaxhighlight>
 
=={{header|C}}==
 
<syntaxhighlight lang="c">
<lang c>
int main(){
time_t t;
Line 403 ⟶ 977:
}
return 0;
}</langsyntaxhighlight>
Output (example):
<pre>
Line 419 ⟶ 993:
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight lang="csharp">class Program
{
static void Main(string[] args)
Line 436 ⟶ 1,010:
Console.ReadLine();
}
}</langsyntaxhighlight>
 
=={{header|C++}}==
<langsyntaxhighlight lang="cpp">#include <iostream>
#include <ctime>
#include <cstdlib>
Line 454 ⟶ 1,028:
}
return 0;
}</langsyntaxhighlight>
 
=={{header|Chapel}}==
<langsyntaxhighlight lang="chapel">use Random;
 
var r = new RandomStream();
Line 467 ⟶ 1,041:
writeln(b);
}
delete r;</langsyntaxhighlight>
 
=={{header|Chef}}==
"Liquify" is now depreciated in favor of "Liquefy", but my interpreter/compiler ([http://search.cpan.org/~smueller/Acme-Chef/ Acme::Chef]) works only with "Liquify" so that's how I'm leaving it. At least it'll work no matter which version you use.
<div style='width:full;overflow:scroll'>
<langsyntaxhighlight Cheflang="chef">Healthy Vita-Sauce Loop - Broken.
 
Makes a whole lot of sauce for two people.
Line 529 ⟶ 1,103:
Pour contents of the 1st mixing bowl into the 1st baking dish.
 
Serves 2.</langsyntaxhighlight>
</div>
 
=={{header|Clojure}}==
<langsyntaxhighlight lang="lisp">(loop [[a b & more] (repeatedly #(rand-int 20))]
(println a)
(when-not (= 10 a)
(println b)
(recur more)))</langsyntaxhighlight>
 
=={{header|COBOL}}==
{{works with|OpenCOBOL}}
<langsyntaxhighlight lang="cobol"> IDENTIFICATION DIVISION.
PROGRAM-ID. Random-Nums.
 
Line 566 ⟶ 1,140:
COMPUTE Num = FUNCTION REM(FUNCTION RANDOM * 100, 20)
DISPLAY Num
.</langsyntaxhighlight>
 
=={{header|CoffeeScript}}==
We can use print from the Rhino JavaScript shell as in the JavaScript example or console.log, with a result like this:
<langsyntaxhighlight lang="coffeescript">
loop
print a = Math.random() * 20 // 1
break if a == 10
print Math.random() * 20 // 1
</syntaxhighlight>
</lang>
 
=={{header|ColdFusion}}==
<langsyntaxhighlight lang="cfm">
<Cfset randNum = 0>
<cfloop condition="randNum neq 10">
Line 587 ⟶ 1,161:
<Br>
</cfloop>
</syntaxhighlight>
</lang>
{{out}}
My first two test outputs (I swear this is true)
Line 655 ⟶ 1,229:
 
=={{header|Common Lisp}}==
<langsyntaxhighlight lang="lisp">(loop for a = (random 20)
do (print a)
until (= a 10)
do (print (random 20)))</langsyntaxhighlight>
 
=== Using DO ===
<syntaxhighlight lang="lisp">
(do ((a (random 20) (random 20))) ; Initialize to rand and set new rand on every loop
((= a 10) (write a)) ; Break condition and last step
(format t "~a~3T~a~%" a (random 20))) ; On every loop print formated `a' and rand `b'
</syntaxhighlight>
 
{{out}}
<pre>
19 7
8 16
17 10
19 12
7 16
5 19
16 1
8 8
3 18
3 5
3 3
9 7
1 15
1 10
14 10
2 4
13 6
10
</pre>
 
=={{header|D}}==
<langsyntaxhighlight lang="d">import std.stdio, std.random;
 
void main() {
Line 671 ⟶ 1,274:
write(uniform(0, 20), " ");
}
}</langsyntaxhighlight>
{{out}}
<pre>2 4 9 5 3 7 4 4 14 14 3 7 13 8 13 6 10 </pre>
Line 677 ⟶ 1,280:
=={{header|dc}}==
{{trans|bc}}
<langsyntaxhighlight lang="dc">1 ss [s = seed of the random number generator]sz
0k [scale = 0]sz
 
Line 701 ⟶ 1,304:
0 0 =r p sz [Print 2nd number.]sz
0 0 =B [Continue loop.]sz
]sB 0 0 =B</langsyntaxhighlight>
 
=={{header|Delphi}}==
 
<langsyntaxhighlight Delphilang="delphi">program Project5;
 
{$APPTYPE CONSOLE}
Line 721 ⟶ 1,324:
end.
 
</syntaxhighlight>
</lang>
 
=={{header|DWScript}}==
 
<langsyntaxhighlight lang="delphi">
while True do begin
var num := RandomInt(20);
PrintLn(num);
if num=10 then Break;
end;</langsyntaxhighlight>
 
=={{header|E}}==
<langsyntaxhighlight lang="e">while (true) {
def a := entropy.nextInt(20)
print(a)
Line 741 ⟶ 1,344:
}
println(" ", entropy.nextInt(20))
}</langsyntaxhighlight>
 
=={{header|EasyLang}}==
<syntaxhighlight>
repeat
a = randint 20
print a
until a = 10
print randint 20
.
</syntaxhighlight>
 
=={{header|Eiffel}}==
<syntaxhighlight lang="eiffel">
example
-- Eiffel example code
local
n: INTEGER
r: RANDOMIZER
do
from
create r
n := r.random_integer_in_range (0 |..| 19)
until
n = 10
loop
n := r.random_integer_in_range (0 |..| 19)
end
end
</syntaxhighlight>
{{out}}
The output is superfluous and unneeded to read and understand what the Eiffel code is doing.
The test code is sufficient to prove that it works.
Uses randomizer library located at: https://github.com/ljr1981/randomizer
 
=={{header|Ela}}==
Line 749 ⟶ 1,385:
As a result, an output looks almost truly random:
 
<langsyntaxhighlight lang="ela">open datetime random monad io
loop = loop' 1
Line 760 ⟶ 1,396:
 
 
loop 10 ::: IO</langsyntaxhighlight>
 
=={{header|Elixir}}==
{{works with|Elixir|1.2}}
<langsyntaxhighlight lang="elixir">defmodule Loops do
def break, do: break(random)
Line 776 ⟶ 1,412:
end
 
Loops.break</langsyntaxhighlight>
 
{{out}}
Line 794 ⟶ 1,430:
1, 17
13, 5
10
</pre>
 
=={{header|Emacs Lisp}}==
<syntaxhighlight lang="lisp">(defun wait_10 ()
(catch 'loop-break
(while 't
(let ((math (random 19)))
(if (= math 10)
(progn (message "Found value: %d" math)
(throw 'loop-break math))
(message "current number is: %d" math) ) ) ) ) )
 
(wait_10)</syntaxhighlight>
 
=={{header|EMal}}==
<syntaxhighlight lang="emal">
for ever
int a = random(20)
write(a)
if a == 10 do break end
writeLine("," + random(20))
end
writeLine()
</syntaxhighlight>
{{out}}
<pre>
19,14
10
</pre>
 
=={{header|Erlang}}==
<langsyntaxhighlight lang="erlang">%% Implemented by Arjun Sunel
-module(forever).
-export([main/0, for/0]).
Line 815 ⟶ 1,479:
for()
end.
</syntaxhighlight>
</lang>
 
=={{header|ERRE}}==
<syntaxhighlight lang="erre">
<lang ERRE>
LOOP
A=INT(RND(1)*20)
Line 825 ⟶ 1,489:
PRINT(INT(RND(1)*20))
END LOOP
</syntaxhighlight>
</lang>
The <code>RND(X)</code> function returns a random integer from 0 to 1. X is a dummy argument.
 
=={{header|Euphoria}}==
<langsyntaxhighlight lang="euphoria">integer i
while 1 do
i = rand(20) - 1
Line 837 ⟶ 1,501:
end if
printf(1, "%g ", {rand(20)-1})
end while</langsyntaxhighlight>
The <code>rand()</code> function returns a random integer from 1 to the integer provided.
 
=={{header|F_Sharp|F#}}==
<syntaxhighlight lang="fsharp">
<lang F#>
// Loops/Break. Nigel Galloway: February 21st., 2022
let mutable a=21
let n=System.Random()
let mutable b=22
let rec fN g=printf "%d " g; if g <> 10 then fN(n.Next(20))
let mutable c=23
fN(n.Next(20))
while(a<>10) do
</syntaxhighlight>
b <- (new System.Random()).Next(0, 20)
if(a<>b) then
printf "%i " b
c <- (new System.Random(b)).Next(0, 20)
if(b<>10) then
if(a<>b) then
printfn "%i " c
a<-b
</lang>
 
=={{header|Factor}}==
Using <code>with-return</code>:
<langsyntaxhighlight lang="factor">[
[ 20 random [ . ] [ 10 = [ return ] when ] bi 20 random . t ] loop
] with-return</langsyntaxhighlight>
 
Idiomatic Factor:
<langsyntaxhighlight lang="factor">[ 20 random [ . ] [ 10 = not ] bi dup [ 20 random . ] when ] loop</langsyntaxhighlight>
 
=={{header|Fantom}}==
 
<langsyntaxhighlight lang="fantom">
class ForBreak
{
Line 881 ⟶ 1,537:
}
}
</syntaxhighlight>
</lang>
 
=={{header|Forth}}==
<langsyntaxhighlight lang="forth">include random.fs
 
: main
Line 897 ⟶ 1,553:
10 = if leave then
i random .
loop ;</langsyntaxhighlight>
 
=={{header|Fortran}}==
{{works with|Fortran|90 and later}}
<langsyntaxhighlight lang="fortran">program Example
implicit none
 
Line 917 ⟶ 1,573:
end do
 
end program Example</langsyntaxhighlight>
 
{{works with|Fortran|77 and later}}
<langsyntaxhighlight lang="fortran"> PROGRAM LOOPBREAK
INTEGER I, RNDINT
 
Line 988 ⟶ 1,644:
ENDIF
RETURN
END</langsyntaxhighlight>
 
{{works with|Fortran|66 and earlier}}
Line 996 ⟶ 1,652:
 
The RANDU routine is so notorious that latter-day compilers can supply their own RANDU (using a better method), and further, disregard a user-supplied RANDU routine so it may have to be called RANDUU or some other name!
<syntaxhighlight lang="fortran">
<lang Fortran>
SUBROUTINE RANDU(IX,IY,YFL)
Copied from the IBM1130 Scientific Subroutines Package (1130-CM-02X): Programmer's Manual, page 60.
Line 1,028 ⟶ 1,684:
20 CONTINUE
END
</syntaxhighlight>
</lang>
Output, converted to along the line:
0 13 4 19 1 7 2 12 4 7 14 11 6 4 0 9 5 12 16 19 18 2 0 13 2 7 10
Line 1,034 ⟶ 1,690:
 
=={{header|FreeBASIC}}==
<langsyntaxhighlight lang="freebasic">' FB 1.05.0 Win64
 
Dim i As Integer
Line 1,049 ⟶ 1,705:
 
Print
Sleep</langsyntaxhighlight>
 
Sample output
Line 1,059 ⟶ 1,715:
</pre>
 
=={{header|FutureBasicFrink}}==
<syntaxhighlight lang="frink">while true
<lang futurebasic>
{
include "ConsoleWindow"
a = random[0,19]
randomize
print["$a "]
dim as short stopGo, goOn
if a == 10
break
 
b = random[0,19]
while ( stopGo != 10 )
stopGo = rnd(19) : print ["stopGo$b ="; stopGo,]
}</syntaxhighlight>
goOn = rnd(19) : print "goOn ="; goOn
{{out}}
wend
</lang>
Sample output:
<pre>
stopGo3 =8 148 8 11 6 3 goOn2 =10 17
stopGo = 5 goOn = 8
stopGo = 18 goOn = 1
stopGo = 1 goOn = 11
stopGo = 13 goOn = 3
stopGo = 16 goOn = 6
stopGo = 14 goOn = 4
stopGo = 7 goOn = 17
stopGo = 14 goOn = 9
stopGo = 8 goOn = 2
stopGo = 15 goOn = 19
stopGo = 17 goOn = 2
stopGo = 13 goOn = 13
stopGo = 8 goOn = 1
stopGo = 11 goOn = 19
stopGo = 3 goOn = 4
stopGo = 14 goOn = 2
stopGo = 18 goOn = 7
stopGo = 15 goOn = 17
stopGo = 15 goOn = 15
stopGo = 15 goOn = 8
stopGo = 12 goOn = 9
stopGo = 2 goOn = 8
stopGo = 12 goOn = 12
stopGo = 10 goOn = 4
</pre>
 
=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">include "NSLog.incl"
 
long num
do
num = rnd(20) - 1
NSLog(@"%ld",num)
until ( num == 10 )
 
HandleEvents</syntaxhighlight>
 
=={{header|Gambas}}==
<langsyntaxhighlight lang="gambas">Public Sub Form_Open()
Dim iRand As Integer
 
Line 1,108 ⟶ 1,751:
Until iRand = 10
 
End</syntaxhighlight> =={{header|Gambas}}==
End</lang>
 
=={{header|Gambas}}==
'''[https://gambas-playground.proko.eu/?gist=65d2287312298a938e7e8eea8899e38b Click this link to run this code]'''
<langsyntaxhighlight lang="gambas">Public Sub Main()
Dim byNo As Byte
 
Line 1,123 ⟶ 1,764:
Loop
 
End</langsyntaxhighlight>
Output:
<pre>
Line 1,130 ⟶ 1,771:
 
=={{header|GAP}}==
<langsyntaxhighlight lang="gap">while true do
a := Random(0, 19);
Print(a);
Line 1,146 ⟶ 1,787:
# 5 10
# 1 16
# 10</langsyntaxhighlight>
 
=={{header|GDScript}}==
{{works with|Godot|4.0.1}}
{{trans|11l}}
 
<syntaxhighlight lang="gdscript">
extends MainLoop
 
 
func _process(_delta: float) -> bool:
randomize()
 
while true:
var a: int = randi_range(0, 19)
print(a)
if a == 10:
break
var b: int = randi_range(0, 19)
print(b)
 
return true # Exit
</syntaxhighlight>
 
=={{header|GML}}==
<langsyntaxhighlight GMLlang="gml">while(1)
{
a = floor(random(19))
Line 1,158 ⟶ 1,821:
show_message(string(a))
}
</syntaxhighlight>
</lang>
 
=={{header|Go}}==
<langsyntaxhighlight lang="go">package main
 
import "fmt"
Line 1,178 ⟶ 1,841:
fmt.Println(b)
}
}</langsyntaxhighlight>
 
=={{header|Groovy}}==
<langsyntaxhighlight lang="groovy">final random = new Random()
 
while (true) {
Line 1,189 ⟶ 1,852:
print ' '
println random.nextInt(20)
}</langsyntaxhighlight>
 
=={{header|GW-BASIC}}==
<langsyntaxhighlight lang="qbasic">10 NUM = 0
20 WHILE NUM <> 10
30 NUM = INT(RND * 20)
40 PRINT NUM
50 WEND</langsyntaxhighlight>
 
=={{header|Harbour}}==
<langsyntaxhighlight lang="visualfoxpro">PROCEDURE Loop()
 
LOCAL n
Line 1,211 ⟶ 1,874:
ENDDO
 
RETURN</langsyntaxhighlight>
 
=={{header|Haskell}}==
<langsyntaxhighlight lang="haskell">import Control.Monad
import System.Random
 
Line 1,222 ⟶ 1,885:
unless (r==k) $ do
print =<< randomRIO (0,n)
loopBreak n k</langsyntaxhighlight>
Use:
<syntaxhighlight lang ="haskell">loopBreak 19 10</langsyntaxhighlight>
 
=={{header|Haxe}}==
<syntaxhighlight lang="haxe">class Program {
static public function main():Void {
while(true) {
var a = Std.random(20);
Sys.println(a);
if (a == 10)
break;
var b = Std.random(20);
Sys.println(b);
}
}
}</syntaxhighlight>
 
=={{header|hexiscript}}==
<syntaxhighlight lang="hexiscript">while true
let r rand 20
println r
if r = 10
break
endif
println rand 20
endwhile</syntaxhighlight>
 
=={{header|HicEst}}==
<langsyntaxhighlight lang="hicest">1 DO i = 1, 1E20 ! "forever"
a = INT( RAN(10, 10) )
WRITE(name) a
Line 1,235 ⟶ 1,922:
ENDDO
10
END</langsyntaxhighlight>
 
=={{header|HolyC}}==
 
<langsyntaxhighlight lang="holyc">U16 a, b;
while (1) {
a = RandU16 % 20;
Line 1,249 ⟶ 1,936:
Print("%d\n", b);
}
</syntaxhighlight>
</lang>
 
=={{header|Icon}} and {{header|Unicon}}==
<langsyntaxhighlight Iconlang="icon">procedure main()
while 10 ~= writes(?20-1) do write(", ",?20-1)
end</langsyntaxhighlight>
Notes:
* For any positive integer i, ?i produces a value j where 1 <= j <= i
* Although this can be written with a break (e.g. repeat expression & break), there is no need to actually use one. (And it's ugly).
* Programmers new to Icon/Unicon need to understand that just about everything returns values including comparison operators, I/O functions like write/writes.
* This program will perform similarly but not identically under Icon and Unicon because the random operator ?i behaves differently. While both produce pseudo-random numbers a different generator is used. Also, the sequence produced by Icon begins with the same seed value and is repeatable whereas the sequence produced by Unicon does not. One way to force Icon to use different random sequences on each call would be to add the line <langsyntaxhighlight Iconlang="icon">&random := integer(map("smhSMH","Hh:Mm:Ss",&clock))</langsyntaxhighlight> at the start of the <tt>main</tt> procedure to set the random number seed based on the time of day.
 
=={{Header|Insitux}}==
 
<syntaxhighlight lang="insitux">
(while true
(print (let x (rand-int 0 20)))
(when (= x 10) (break)))
</syntaxhighlight>
 
=={{header|Io}}==
<langsyntaxhighlight lang="io">loop(
a := Random value(0,20) floor
write(a)
Line 1,268 ⟶ 1,963:
b := Random value(0,20) floor
writeln(" ",b)
)</langsyntaxhighlight>
 
=={{header|J}}==
In recent versions of J, [[j:Vocabulary/zcapco|Z:]] can be used to provide early termination from a [[j:Vocabulary/fcap|fold]]. For example:
<lang j>loopexample=: verb define
 
while. 1 do.
<syntaxhighlight lang=J> ]F.(( _2 Z: 10&= [ echo)@(?@20))''
smoutput n=. ?20
15
if. 10=n do. return. end.
6
smoutput ?20
5
10
 
]F.(( _2 Z: 10&= [ echo)@(?@20))''
14
9
3
8
19
14
5
13
8
1
19
2
10
 
</syntaxhighlight>
 
But other mechanisms are also supported:
 
<syntaxhighlight lang="j">loopexample=: {{
while. do.
echo k=. ?20
if. 10=k do. return. end.
echo ?20
end.
}}</syntaxhighlight>
)</lang>
 
Note that <code>break.</code> or <code>goto_FOO.</code> could have been used in place of <code>return.</code>.:
 
<syntaxhighlight lang="j">loopexample2=: verb define
while. do.
echo k=. ?20
if. 10=k do. break. end.
echo ?20
end.
)</syntaxhighlight>
 
<syntaxhighlight lang="j">loopexample3=: {{
while. do.
echo k=. ?20
if. 10=k do. goto_done. end.
echo ?20
end.
label_done.
}}</syntaxhighlight>
 
=={{header|Jakt}}==
The random number generation is slightly biased, but negligible for the purpose of the task.
 
<syntaxhighlight lang="jakt">
fn random(mut random_source: File = File::open_for_reading("/dev/urandom")) throws -> u64 {
mut buffer = [0u8; 4]
random_source.read(buffer)
mut result = 0u64
for byte in buffer {
result <<= 8
result += byte as! u64
}
return result
}
 
fn main() {
while true {
let n = random() % 20
println("{}", n)
if n == 10 {
break
}
 
println("{}", random() % 20)
}
}
</syntaxhighlight>
 
=={{header|Java}}==
<langsyntaxhighlight lang="java">import java.util.Random;
 
Random rand = new Random();
Line 1,291 ⟶ 2,058:
int b = rand.nextInt(20);
System.out.println(b);
}</langsyntaxhighlight>
 
=={{header|JavaScript}}==
<langsyntaxhighlight lang="javascript">for (;;) {
var a = Math.floor(Math.random() * 20);
print(a);
Line 1,301 ⟶ 2,068:
a = Math.floor(Math.random() * 20);
print(a);
}</langsyntaxhighlight>
The <code>print()</code> function is available in the [[Rhino]] JavaScript shell.
 
Line 1,309 ⟶ 2,076:
In a functional idiom of JavaScript, we might instead write something like:
 
<langsyntaxhighlight JavaScriptlang="javascript">(function streamTillInitialTen() {
var nFirst = Math.floor(Math.random() * 20);
Line 1,321 ⟶ 2,088:
return streamTillInitialTen();
})();</langsyntaxhighlight>
 
Obtaining runs like:
Line 1,362 ⟶ 2,129:
Though returning a value composes better, and costs less IO traffic, than firing off side-effects from a moving thread:
 
<langsyntaxhighlight JavaScriptlang="javascript">console.log(
(function streamTillInitialTen() {
var nFirst = Math.floor(Math.random() * 20);
Line 1,375 ⟶ 2,142:
);
})().join('\n')
);</langsyntaxhighlight>
 
Sample result:
Line 1,403 ⟶ 2,170:
 
Currently, jq does not have a built-in random-number generator, so here we borrow one of the linear congruential generators defined at https://rosettacode.org/wiki/Linear_congruential_generator -
<langsyntaxhighlight lang="jq"># 15-bit integers generated using the same formula as rand()
# from the Microsoft C Runtime.
# Input: [ count, state, rand ]
Line 1,418 ⟶ 2,185:
 
# Generate random integers from 0 to (n-1):
def rand(n): n * (rand_Microsoft(17) / 32768) | trunc;</langsyntaxhighlight>
 
'''"take"'''
 
<langsyntaxhighlight lang="jq">def take(s; cond):
label $done
| foreach s as $n (null; $n; if $n | cond | not then break $done else . end);</langsyntaxhighlight>
 
'''"count"'''
 
Since the PRNG used here is deterministic, we'll just count the number of integers generated:
<langsyntaxhighlight lang="jq">def count(s): reduce s as $i (0; . + 1);</langsyntaxhighlight>
 
'''Example'''
Line 1,437 ⟶ 2,204:
 
=={{header|Julia}}==
<syntaxhighlight lang="julia">
<lang Julia>
while true
n = rand(0:19)
Line 1,448 ⟶ 2,215:
@printf "%4d\n" n
end
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,467 ⟶ 2,234:
 
=={{header|Kotlin}}==
<syntaxhighlight lang="kotlin">import kotlin.random.Random
{{trans|Java}}
<lang scala>import java.util.Random
 
fun main(args: Array<String>) {
val rand = Random()
while (true) {
val a = randRandom.nextInt(20)
println(a)
if (a == 10) break
println(randRandom.nextInt(20))
}
}</langsyntaxhighlight>
 
A more compact version:
 
<syntaxhighlight lang="kotlin">fun main() {
while ((0..19).random().also { println(it) } != 10)
println((0..19).random())
}</syntaxhighlight>
 
=={{header|Lambdatalk}}==
<syntaxhighlight lang="scheme">
{def loops_break
{lambda {:n}
{if {= :n 10}
then :n -> end of loop
else :n {loops_break {round {* 20 {random}}}}}}}
-> loops_break
 
{loops_break 0}
-> 0 16 8 5 9 17 9 18 1 18 1 1 12 13 15 1 10 -> end of loop
</syntaxhighlight>
 
=={{header|Lang}}==
<syntaxhighlight lang="lang">
loop {
$a = fn.randRange(20)
fn.printf(%2d, $a)
if($a === 10) {
fn.println()
con.break
}
$b = fn.randRange(20)
fn.printf(\s- %2d%n, $b)
}
</syntaxhighlight>
 
=={{header|Lang5}}==
<langsyntaxhighlight lang="lang5">do 20 ? int dup . 10 == if break then 20 ? int . loop</langsyntaxhighlight>
 
=={{header|langur}}==
<syntaxhighlight lang="langur">for {
val .i = random 0..19
write .i, " "
if .i == 10 { writeln(); break }
}</syntaxhighlight>
 
{{out}}
<pre>13 18 14 8 0 5 17 13 9 13 6 5 13 16 6 9 11 18 10</pre>
 
=={{header|Lasso}}==
<langsyntaxhighlight Lassolang="lasso">local(x = 0)
while(#x != 10) => {^
#x = integer_random(19,0)
Line 1,490 ⟶ 2,302:
#x == 10 ? loop_abort
', '+integer_random(19,0)+'\r'
^}</langsyntaxhighlight>
 
=={{header|Liberty BASIC}}==
The task specifies a "number".
<langsyntaxhighlight lang="lb">while num<>10
num=rnd(1)*20
print num
Line 1,500 ⟶ 2,312:
print rnd(1)*20
wend
</langsyntaxhighlight>If "integer" was meant, this code fulfils that requirement.
<langsyntaxhighlight lang="lb">while num<>10
num=int(rnd(1)*20)
print num
Line 1,507 ⟶ 2,319:
print int(rnd(1)*20)
wend
</syntaxhighlight>
</lang>
 
=={{header|Lingo}}==
<langsyntaxhighlight lang="lingo">repeat while TRUE
n = random(20)-1
put n
if n = 10 then exit repeat
put random(20)-1
end repeat</langsyntaxhighlight>
 
=={{header|Lisaac}}==
<langsyntaxhighlight Lisaaclang="lisaac">Section Header
 
+ name := TEST_LOOP_BREAK;
Line 1,538 ⟶ 2,350:
'\n'.print;
}
);</langsyntaxhighlight>
 
=={{header|LiveCode}}==
<langsyntaxhighlight LiveCodelang="livecode">command loopForeverRandom
repeat forever
put random(20) - 1 into tRand
Line 1,549 ⟶ 2,361:
end repeat
end loopForeverRandom
</syntaxhighlight>
</lang>
 
=={{header|Lua}}==
<langsyntaxhighlight lang="lua">repeat
k = math.random(19)
print(k)
if k == 10 then break end
print(math.random(19)
until false</langsyntaxhighlight>
 
=={{header|M2000 Interpreter}}==
We use block of module to loop. Break also can be used, but breaks nested blocks (without crossing modules/functions). Using break in second Checkit module we break three blocks.
<syntaxhighlight lang="m2000 interpreter">
Module Checkit {
M=Random(0, 19)
Print M
If M=10 then Continue ' because loop flag is false, continue act as Exit
Print Random(0, 19)
loop
}
Checkit
 
Module Checkit {
do {
do {
{
M=Random(0, 19)
Print M
If M=10 then Break
Print Random(0, 19)
loop
}
Print "no print this"
} always
Print "no print this"
} always
Print "print ok"
}
Checkit
</syntaxhighlight>
 
=={{header|M4}}==
<langsyntaxhighlight M4lang="m4">define(`randSeed',141592653)dnl
define(`setRand',
`define(`randSeed',ifelse(eval($1<10000),1,`eval(20000-$1)',`$1'))')dnl
Line 1,571 ⟶ 2,414:
loopbreak')')dnl
dnl
loopbreak</langsyntaxhighlight>
 
{{out}}
Line 1,583 ⟶ 2,426:
 
=={{header|Maple}}==
<langsyntaxhighlight Maplelang="maple">r := rand( 0 .. 19 ):
do
n := r();
Line 1,591 ⟶ 2,434:
end if;
printf( "%d\n", r() );
end do:</langsyntaxhighlight>
 
=={{header|Mathematica}}/{{header|Wolfram Language}}==
<langsyntaxhighlight Mathematicalang="mathematica">While[(Print[#];#!=10)&[RandomIntger[{0,19}]],
Print[RandomInteger[{0,19}]
]</langsyntaxhighlight>
 
=={{header|Maxima}}==
<langsyntaxhighlight lang="maxima">/* To exit the innermost block, use return(<value>) */
 
block([n],
Line 1,634 ⟶ 2,477:
> x: 2;
> exit;
2</langsyntaxhighlight>
 
=={{header|MAXScript}}==
<syntaxhighlight lang="maxscript">
<lang MAXScript>
while true do
(
Line 1,646 ⟶ 2,489:
format ("B: % \n") b
)
</syntaxhighlight>
</lang>
 
=={{header|min}}==
{{works with|min|0.19.6}}
<syntaxhighlight lang="min">randomize
(19 random puts 10 ==) (19 random puts!) () () linrec</syntaxhighlight>
 
=={{header|МК-61/52}}==
<syntaxhighlight lang="text">СЧ 2 0 * П0
1 0 - [x] x#0 18
СЧ 2 0 * П1
БП 00 ИП0 С/П</langsyntaxhighlight>
 
=={{header|Modula-3}}==
<langsyntaxhighlight lang="modula3">MODULE Break EXPORTS Main;
 
IMPORT IO, Fmt, Random;
Line 1,671 ⟶ 2,519:
END;
END;
END Break.</langsyntaxhighlight>
 
=={{header|MOO}}==
<langsyntaxhighlight lang="moo">while (1)
a = random(20) - 1;
player:tell(a);
Line 1,682 ⟶ 2,530:
b = random(20) - 1;
player:tell(b);
endwhile</langsyntaxhighlight>
 
=={{header|MUMPS}}==
<langsyntaxhighlight MUMPSlang="mumps">BREAKLOOP
NEW A,B
SET A=""
Line 1,699 ⟶ 2,547:
NEW A,B
FOR SET A=$RANDOM(20) WRITE !,A QUIT:A=10 SET B=$RANDOM(20) WRITE ?6,B
KILL A,B QUIT</langsyntaxhighlight>
{{out}}
<pre>USER>D BREAKLOOP^ROSETTA
Line 1,722 ⟶ 2,570:
15 13
10</pre>
 
=={{header|Neko}}==
<syntaxhighlight lang="actionscript">/**
Loops/Break in Neko
Tectonics:
nekoc loops-break.neko
neko loops-break
*/
 
var random_new = $loader.loadprim("std@random_new", 0);
var random_int = $loader.loadprim("std@random_int", 2);
 
var random = random_new();
 
while true {
var r = random_int(random, 20);
$print(r, " ");
 
if r == 10 break;
 
r = random_int(random, 20);
$print(r, " ");
}
$print("\n");</syntaxhighlight>
 
{{out}}
<pre>prompt$ nekoc loops-break.neko
prompt$ neko loops-break
0 8 17 12 4 18 7 6 19 11 13 6 12 7 6 6 6 18 14 7 18 10 15 6 9 5 4 14 10</pre>
 
=={{header|Nemerle}}==
{{trans|C#}}
<langsyntaxhighlight Nemerlelang="nemerle">using System;
using System.Console;
using Nemerle.Imperative;
Line 1,743 ⟶ 2,620:
}
}
}</langsyntaxhighlight>
 
=={{header|NetRexx}}==
<langsyntaxhighlight NetRexxlang="netrexx">/* NetRexx */
options replace format comments java crossref savelog symbols nobinary
 
Line 1,762 ⟶ 2,639:
end lb
say
</syntaxhighlight>
</lang>
 
=={{header|NewLISP}}==
<langsyntaxhighlight NewLISPlang="newlisp">(until (= 10 (println (rand 20)))
(println (rand 20)))</langsyntaxhighlight>
 
=={{header|Nim}}==
{{trans|Python}}
<langsyntaxhighlight lang="nim">import mathrandom
 
while true:
let a = random(2019)
echo a
if a == 10:
break
let b = random(2019)
echo b</langsyntaxhighlight>
 
=={{header|NS-HUBASIC}}==
<syntaxhighlight lang="ns-hubasic">10 I=RND(20)
20 PRINT I
30 IF I=10 THEN STOP
40 PRINT RND(20)
50 GOTO 10</syntaxhighlight>
 
=={{header|Nu}}==
<syntaxhighlight lang="nu">
while true {
let a = random int 0..19
print $a
if $a == 10 {break}
print (random int 0..19)
}
</syntaxhighlight>
 
=={{header|Oberon-2}}==
Works with oo2c Version 2
<langsyntaxhighlight lang="oberon2">
MODULE LoopBreak;
IMPORT
Line 1,804 ⟶ 2,698:
Do
END LoopBreak.
</syntaxhighlight>
</lang>
 
=={{header|Objeck}}==
<langsyntaxhighlight lang="objeck">
while(true) {
a := (Float->Random() * 20.0)->As(Int);
Line 1,817 ⟶ 2,711:
a->PrintLine();
}
</syntaxhighlight>
</lang>
 
=={{header|OCaml}}==
<langsyntaxhighlight lang="ocaml"># Random.self_init();;
- : unit = ()
 
Line 1,837 ⟶ 2,731:
13
10
Exception: Pervasives.Exit.</langsyntaxhighlight>
 
=={{header|Octave}}==
<langsyntaxhighlight lang="octave">while(1)
a = floor(unifrnd(0,20, 1));
disp(a)
Line 1,848 ⟶ 2,742:
b = floor(unifrnd(0,20, 1));
disp(b)
endwhile</langsyntaxhighlight>
 
=={{header|Oforth}}==
<langsyntaxhighlight Oforthlang="oforth">while(true) [
19 rand dup print ":" print
10 == ifTrue: [ break ]
19 rand print " " print
]</langsyntaxhighlight>
 
=={{header|Ol}}==
<syntaxhighlight lang="scheme">
(import (otus random!))
 
(call/cc (lambda (break)
(let loop ()
(if (= (rand! 20) 10)
(break #t))
(print (rand! 20))
(loop))))
</syntaxhighlight>
 
=={{header|ooRexx}}==
<langsyntaxhighlight ooRexxlang="oorexx">/*REXX ****************************************************************
* Three Ways to leave a Loop
* ooRexx added the possibility to leave an outer loop
Line 1,902 ⟶ 2,808:
End
Else
Say 'Leave label-name is probably not supported in' v</langsyntaxhighlight>
{{out}}
<pre>i1=1
Line 1,929 ⟶ 2,835:
=={{header|Oz}}==
We can implement this either with recursion or with a special type of the for-loop. Both can be considered idiomatic.
<langsyntaxhighlight lang="oz">for break:Break do
R = {OS.rand} mod 20
in
Line 1,936 ⟶ 2,842:
else {Show {OS.rand} mod 20}
end
end</langsyntaxhighlight>
 
=={{header|PARI/GP}}==
<langsyntaxhighlight lang="parigp">while(1,
t=random(20);
print(t);
if(t==10, break);
print(random(20))
)</langsyntaxhighlight>
 
=={{header|Pascal}}==
Line 1,950 ⟶ 2,856:
 
=={{header|Perl}}==
<langsyntaxhighlight lang="perl">while (1) {
my $a = int(rand(20));
print "$a\n";
Line 1,958 ⟶ 2,864:
my $b = int(rand(20));
print "$b\n";
}</langsyntaxhighlight>
 
=={{header|Perl 6}}==
{{works with|Rakudo|#21 "Seattle"}}
<lang perl6>loop {
say my $n = (0..19).pick;
last if $n == 10;
say (0..19).pick;
}</lang>
 
=={{header|Phix}}==
{{libheader|Phix/basics}}
{{Trans|Euphoria}}
The rand() function returns a random integer from 1 to the integer provided.
 
<lang Phix>integer i
<!--<syntaxhighlight lang="phix">-->
while 1 do
<span style="color: #004080;">integer</span> <span style="color: #000000;">i</span>
i = rand(20)-1
<span style="color: #008080;">while</span> <span style="color: #000000;">1</span> <span style="color: #008080;">do</span>
printf(1, "%g ", {i})
<span style="color: #000000;">i</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">rand</span><span style="color: #0000FF;">(</span><span style="color: #000000;">20</span><span style="color: #0000FF;">)-</span><span style="color: #000000;">1</span>
if i=10 then exit end if
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span> <span style="color: #008000;">"%g "</span><span style="color: #0000FF;">,</span> <span style="color: #0000FF;">{</span><span style="color: #000000;">i</span><span style="color: #0000FF;">})</span>
printf(1, "%g\n", {rand(20)-1})
<span style="color: #008080;">if</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">=</span><span style="color: #000000;">10</span> <span style="color: #008080;">then</span> <span style="color: #008080;">exit</span> <span style="color: #008080;">end</span> <span style="color: #008080;">if</span>
end while</lang>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span> <span style="color: #008000;">"%g\n"</span><span style="color: #0000FF;">,</span> <span style="color: #0000FF;">{</span><span style="color: #7060A8;">rand</span><span style="color: #0000FF;">(</span><span style="color: #000000;">20</span><span style="color: #0000FF;">)-</span><span style="color: #000000;">1</span><span style="color: #0000FF;">})</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">while</span>
<!--</syntaxhighlight>-->
 
{{out}}
<pre>
Line 1,985 ⟶ 2,888:
10
</pre>
 
=={{header|Phixmonti}}==
<syntaxhighlight lang="Phixmonti">/# Rosetta Code problem: https://rosettacode.org/wiki/Loops/Break
by Galileo, 11/2022 #/
 
include ..\Utilitys.pmt
 
def ran rand * int enddef
 
true while
20 ran
dup print "\t" print
10 == if false else 20 ran ? true endif
endwhile</syntaxhighlight>
{{out}}
<pre>12 8
12 10
5 7
10
=== Press any key to exit ===</pre>
 
=={{header|PHP}}==
<langsyntaxhighlight lang="php">while (true) {
$a = rand(0,19);
echo "$a\n";
Line 1,994 ⟶ 2,917:
$b = rand(0,19);
echo "$b\n";
}</langsyntaxhighlight>
 
=={{header|PicoLisp}}==
Literally:
<langsyntaxhighlight PicoLisplang="picolisp">(use R
(loop
(println (setq R (rand 1 19)))
(T (= 10 R))
(println (rand 1 19)) ) )</langsyntaxhighlight>
Shorter:
<langsyntaxhighlight PicoLisplang="picolisp">(until (= 10 (println (rand 1 19)))
(println (rand 1 19)) )</langsyntaxhighlight>
 
=={{header|Pike}}==
<langsyntaxhighlight lang="pike">int main(){
while(1){
int a = random(20);
Line 2,018 ⟶ 2,941:
write(b + "\n");
}
}</langsyntaxhighlight>
 
=={{header|PL/I}}==
<syntaxhighlight lang="pl/i">
<lang PL/I>
do forever;
k = trunc(random()*20);
Line 2,029 ⟶ 2,952:
put skip list (k);
end;
</syntaxhighlight>
</lang>
 
=={{header|Plain English}}==
<syntaxhighlight lang="plainenglish">To run:
Start up.
Demonstrate breaking.
Wait for the escape key.
Shut down.
 
To demonstrate breaking:
Pick a number between 0 and 19.
Write the number to the console.
If the number is 10, break.
Pick another number between 0 and 19.
Write the other number to the console.
Repeat.
 
To write a number to the console:
Convert the number to a string.
Write the string to the console.</syntaxhighlight>
 
=={{header|PostScript}}==
<langsyntaxhighlight lang="postscript">realtime srand % init RNG
{
rand 20 mod % generate number between 0 and 19
dup = % print it
10 eq { exit } if % exit if 10
} loop</langsyntaxhighlight>
 
=={{header|PowerShell}}==
<langsyntaxhighlight lang="powershell">$r = New-Object Random
for () {
$n = $r.Next(20)
Line 2,048 ⟶ 2,990:
}
Write-Host $r.Next(20)
}</langsyntaxhighlight>
 
=={{header|PureBasic}}==
<langsyntaxhighlight PureBasiclang="purebasic">If OpenConsole()
 
Repeat
Line 2,067 ⟶ 3,009:
Input()
CloseConsole()
EndIf</langsyntaxhighlight>
 
=={{header|Python}}==
<langsyntaxhighlight lang="python">from random import randrange
 
while True:
Line 2,078 ⟶ 3,020:
break
b = randrange(20)
print(b)</langsyntaxhighlight>
 
=={{header|QB64}}==
''CBTJD'': 2020/03/14
<syntaxhighlight lang="qbasic">RANDOMIZE TIMER
DO
n = INT(RND * 20)
PRINT n,
IF n = 10 THEN
EXIT DO
ELSE
n = INT(RND * 20)
PRINT n
END IF
LOOP UNTIL 0</syntaxhighlight>
 
=={{header|Qi}}==
<syntaxhighlight lang="qi">
(define loop -> (if (= 10 (PRINT (random 20)))
true
(do (PRINT (random 20))
(loop))))
(loop)
</syntaxhighlight>
 
=={{header|Quackery}}==
 
<syntaxhighlight lang="quackery">[ 20 random
dup echo sp
10 = if done
20 random echo cr
again ]</syntaxhighlight>
 
{{Out}}
 
<pre>16 9
9 14
11 16
14 13
14 17
16 19
13 11
10 </pre>
 
 
=={{header|R}}==
{{works with|R|2.8.1}}
<langsyntaxhighlight Rlang="r">sample0to19 <- function() sample(0L:19L, 1,replace=TRUE)
repeat
{
Line 2,093 ⟶ 3,078:
result2 <- sample0to19()
cat(result1, result2, "\n")
}</langsyntaxhighlight>
 
=={{header|Qi}}==
<lang qi>
(define loop -> (if (= 10 (PRINT (random 20)))
true
(do (PRINT (random 20))
(loop))))
(loop)
</lang>
 
=={{header|Racket}}==
<langsyntaxhighlight lang="racket">
#lang racket
(let loop ()
Line 2,114 ⟶ 3,090:
(displayln (random 20))
(loop)))
</syntaxhighlight>
</lang>
 
=={{header|Raku}}==
(formerly Perl 6)
{{works with|Rakudo|#21 "Seattle"}}
<syntaxhighlight lang="raku" line>loop {
say my $n = (0..19).pick;
last if $n == 10;
say (0..19).pick;
}</syntaxhighlight>
 
=={{header|REBOL}}==
<langsyntaxhighlight REBOLlang="rebol">REBOL [
Title: "Loop/Break"
Author: oofoe
Date: 2009-12-19
URL: http://rosettacode.org/wiki/Loop/Break
]
Line 2,134 ⟶ 3,117:
print rejoin [" " r20]
]
print ""</langsyntaxhighlight>
 
{{out}}
Line 2,143 ⟶ 3,126:
3 14
10</pre>
 
=={{header|Red}}==
{{trans|REBOL}}
<syntaxhighlight lang="rebol">Red [
Title: "Loops/Break"
URL: http://rosettacode.org/wiki/Loops/Break
]
 
random/seed 2 ; Make repeatable. Delete line for 'true' randomness.
 
r20: does [(random 20) - 1]
 
forever [
prin x: r20
if 10 = x [break]
print rejoin [" " r20]
]
print ""</syntaxhighlight>
{{out}}
<pre>
2 15
0 0
1 11
6 14
4 14
10
</pre>
 
=={{header|Retro}}==
<langsyntaxhighlight Retrolang="retro">doc{
A couple of helper functions to make the rest of the
code more readable.
Line 2,167 ⟶ 3,177:
 
[ rand dup . 10 <> [ [ rand . ] ifTrue ] sip ] while
</syntaxhighlight>
</lang>
 
=={{header|REXX}}==
<langsyntaxhighlight lang="rexx">/*REXX program demonstrates a FOREVER DO loop with a test to LEAVE (break). */
/*REXX's RANDOM BIF returns an integer.*/
 
do forever /*perform loop until da cows come home.*/
a=random(19) /*same as: random(0, 19) */
Line 2,178 ⟶ 3,188:
b=random(19) /*same as: random(0, 19) */
say right(b, 5) /*show B right─justified, column 2.*/
end /*forever*/ /* [↑] CHAROUT , xxx writes to term.*/
/*stick a fork in it, we're all done. */</langsyntaxhighlight>
{{out|output}}
 
Line 2,238 ⟶ 3,248:
 
=={{header|Ring}}==
<langsyntaxhighlight lang="ring">
while true
a = random(20)
Line 2,244 ⟶ 3,254:
if a = 10 exit ok
end
</syntaxhighlight>
</lang>
 
=={{header|RPL}}==
RPL does not have any <code>BREAK</code> command. Flags are of great help to exit loops:
≪ 1 CF
'''WHILE''' 1 FC? '''REPEAT'''
RAND 20 * IP
DUP 1 DISP
'''IF''' 10 == '''THEN''' 1 SF '''ELSE'''
RAND 20 * IP
2 DISP '''END'''
'''END'''
The error handling mechanism provides another way to break a loop:
≪ '''IFERR'''
'''WHILE''' 1 '''REPEAT'''
RAND 20 * IP DUP 1 DISP
'''IF''' 10 == '''THEN''' 0 DUP / '''END'''
RAND 20 * IP 2 DISP
'''END'''
'''THEN''' DROP2 '''END'''
 
=={{header|Ruby}}==
<langsyntaxhighlight lang="ruby">loop do
a = rand(20)
print a
Line 2,256 ⟶ 3,287:
b = rand(20)
puts "\t#{b}"
end</langsyntaxhighlight>
or
<langsyntaxhighlight lang="ruby">loop do
print a = rand(20)
puts or break if a == 10
puts "\t#{rand(20)}"
end</langsyntaxhighlight>
 
{{out}}
Line 2,281 ⟶ 3,312:
=={{header|Rust}}==
{{libheader|rand}}
<langsyntaxhighlight lang="rust">// cargo-deps: rand
 
extern crate rand;
use rand::distributions::{Rangethread_rng, IndependentSampleRng};
 
fn main() {
let mut rng = thread_rng();
loop {
let num = Range::newrng.gen_range(0, 19 + 1).ind_sample(&mut rand::thread_rng()20);
if num == 10 {
println!("{}", num);
break;
}
println!("{}", rng.gen_range(0, 20));
}
}</syntaxhighlight>
}
</lang>
 
=={{header|SAS}}==
<langsyntaxhighlight lang="sas">data _null_;
do while(1);
n=floor(uniform(0)*20);
Line 2,304 ⟶ 3,336:
if n=10 then leave; /* 'leave' to break a loop */
end;
run;</langsyntaxhighlight>
 
=={{header|Sather}}==
<langsyntaxhighlight lang="sather">-- help class for random number sequence
class RANDOM is
attr seed:INT;
Line 2,335 ⟶ 3,367:
end;
end;
end;</langsyntaxhighlight>
 
=={{header|Scala}}==
<langsyntaxhighlight lang="scala">scala> import util.control.Breaks.{breakable, break}
import util.control.Breaks.{breakable, break}
 
Line 2,357 ⟶ 3,389:
4
10
</syntaxhighlight>
</lang>
 
=={{header|Scheme}}==
<langsyntaxhighlight lang="scheme">
(let loop ((first (random 20)))
(print first)
Line 2,367 ⟶ 3,399:
(print (random 20))
(loop (random 20)))))
</syntaxhighlight>
</lang>
 
Or by using call/cc to break out:
 
<langsyntaxhighlight lang="scheme">
(call/cc
(lambda (break)
Line 2,380 ⟶ 3,412:
(print (random 20))
(loop (random 20)))))
</syntaxhighlight>
</lang>
 
=={{header|Scilab}}==
{{works with|Scilab|5.5.1}}
<syntaxhighlight lang="text">while %T
a=int(rand()*20) // [0..19]
printf("%2d ",a)
Line 2,391 ⟶ 3,423:
printf("%2d\n",b)
end
printf("\n")</langsyntaxhighlight>
{{out}}
<pre style="height:20ex">
Line 2,403 ⟶ 3,435:
10
</pre>
 
=={{header|Seed7}}==
Seed7 has no goto statement and hidden gotos like break- and continue-statements are also omitted.
But this is not a problem. All programs with break-statements can be rewritten as structured programs without break.
Usually structured programs have better readability. If you are used to it writing programs without goto (and break) is easy.
The example below shows how easy a break can be avoided in this exercise. The loop ends, if the first random number
is 10. The second random number does never terminate the loop.
 
<syntaxhighlight lang="seed7">$ include "seed7_05.s7i";
 
const proc: main is func
local
var integer: number is 0;
begin
repeat
number := rand(0, 19);
writeln(number);
if number <> 10 then
writeln(rand(0, 19));
end if;
until number = 10;
end func;</syntaxhighlight>
 
=={{header|Sidef}}==
<langsyntaxhighlight lang="ruby">var lim = 20;
loop {
say (var n = lim.rand.int);
n == 10 && break;
say lim.rand.int;
}</langsyntaxhighlight>
 
=={{header|Simula}}==
{{works with|SIMULA-67}}
<langsyntaxhighlight lang="simula">! Loops/Break - simula67 - 08/03/2017;
begin
integer num,seed;
Line 2,425 ⟶ 3,479:
end;
lab:
end</langsyntaxhighlight>
{{out}}
<pre>
Line 2,433 ⟶ 3,487:
10
</pre>
 
 
=={{header|Smalltalk}}==
{{works with|Smalltalk/X}}
<langsyntaxhighlight lang="smalltalk">[
|afirst bsecond done|
 
afirst := Random nextIntegerBetween:0 and:19.
Stdout print: afirst; cr.
(done := (afirst == 10)) ifFalse:[
bsecond := Random nextIntegerBetween:0 and:19.
Stdout print:' '; print: bsecond; cr.
].
done
] whileFalse</langsyntaxhighlight>
 
alternative:
<syntaxhighlight lang="smalltalk">[:exit |
 
<lang smalltalk>[:exit |
|first|
 
Line 2,457 ⟶ 3,508:
first == 10 ifTrue:[ exit value:nil ].
Stdout print:' '; printCR: (Random nextIntegerBetween:0 and:19).
] loopWithExit.</langsyntaxhighlight>
or shorter (because <tt>ifTrue:</tt> sends #value to its arg):
<syntaxhighlight lang="smalltalk">[:exit |
|first|
 
Stdout printCR: (first := Random nextIntegerBetween:0 and:19).
first == 10 ifTrue:exit.
Stdout print:' '; printCR: (Random nextIntegerBetween:0 and:19).
] loopWithExit.</syntaxhighlight>
 
=={{header|Snabel}}==
Uses a ranged random generator as iterator.
<langsyntaxhighlight lang="snabel">
let: rnd 19 random;
 
Line 2,469 ⟶ 3,528:
@rnd pop str say
} for
</syntaxhighlight>
</lang>
 
=={{header|SNOBOL4}}==
Most Snobols lack a built-in rand( ) function. Kludgy "Linux-only" implementation:
<langsyntaxhighlight lang="snobol"> input(.random,io_findunit(),1,"/dev/urandom")
while &ALPHABET random @rand
output = rand = rand - (rand / 20) * 20
eq(rand,10) :f(while)
end</langsyntaxhighlight>
 
Or using a library function:
 
<langsyntaxhighlight SNOBOL4lang="snobol4">* rand(n) -> real x | 0 <= x < n
-include 'random.sno'
 
loop ne(output = convert(rand(20)'integer'),10) :s(loop)
end</langsyntaxhighlight>
 
=={{header|Spin}}==
{{works with|BST/BSTC}}
{{works with|FastSpin/FlexSpin}}
{{works with|HomeSpun}}
{{works with|OpenSpin}}
<syntaxhighlight lang="spin">con
_clkmode = xtal1 + pll16x
_clkfreq = 80_000_000
 
obj
ser : "FullDuplexSerial.spin"
 
pub main | r, s
ser.start(31, 30, 0, 115200)
 
s := 1337 ' PRNG seed
 
repeat
r := ||?s // 20
ser.dec(r)
ser.tx(32)
if r == 10
quit
r := ||?s // 20
ser.dec(r)
ser.tx(32)
 
waitcnt(_clkfreq + cnt)
ser.stop
cogstop(0)</syntaxhighlight>
{{out}}
<pre>
8 13 1 7 19 1 15 16 9 6 5 9 1 15 5 0 6 3 9 19 8 9 10
</pre>
 
=={{header|SparForte}}==
As a structured script.
<syntaxhighlight lang="ada">#!/usr/local/bin/spar
pragma annotate( summary, "loopsbreak" )
@( description, "Show a loop which prints random numbers (each number newly" )
@( description, "generated each loop) from 0 to 19 (inclusive). If a number is" )
@( description, "10, stop the loop after printing it, and do not generate any" )
@( description, "further numbers. Otherwise, generate and print a second random" )
@( description, "number before restarting the loop. If the number 10 is never" )
@( description, "generated as the first number in a loop, loop forever. " )
@( category, "tutorials" )
@( author, "Ken O. Burtch" )
@( see_also, "http://rosettacode.org/wiki/Loops/Break" );
pragma license( unrestricted );
 
pragma software_model( nonstandard );
pragma restriction( no_external_commands );
 
procedure arraysloop is
a : positive;
b : positive;
begin
loop
a := numerics.rnd( 20 );
put_line( strings.image( a ) );
exit when a = 10;
b := numerics.rnd( 20 );
put_line( strings.image( b ) );
end loop;
end arraysloop;</syntaxhighlight>
 
=={{header|SPL}}==
Direct approach:
<langsyntaxhighlight lang="spl">>
n = #.rnd(20)
#.output(n)
Line 2,495 ⟶ 3,620:
n = #.rnd(20)
#.output(n)
<</langsyntaxhighlight>
With reusable code:
<langsyntaxhighlight lang="spl">>
:1
n = #.rnd(20)
Line 2,504 ⟶ 3,629:
<< n=10
1 <->
<</langsyntaxhighlight>
 
=={{header|SQL PL}}==
{{works with|Db2 LUW}} version 9.7 or higher.
With SQL PL:
<langsyntaxhighlight lang="sql pl">
--#SET TERMINATOR @
 
SET SERVEROUTPUT ON@
 
Line 2,524 ⟶ 3,651:
END WHILE LOOP;
END @
</syntaxhighlight>
</lang>
Output:
<pre>
db2 -td@
db2 => SET SERVEROUTPUT ON@
DB20000I The SET SERVEROUTPUT command completed successfully.
db2 => BEGIN
...
db2 (cont.) => DECLARE VAL INTEGER;
db2 (cont.) => LOOP: WHILE (TRUE = TRUE) DO
db2 (cont.) => SET VAL = INTEGER(RAND() * 20);
db2 (cont.) => CALL DBMS_OUTPUT.PUT_LINE(VAL);
db2 (cont.) => IF (VAL = 10) THEN
db2 (cont.) => LEAVE LOOP;
db2 (cont.) => END IF;
db2 (cont.) => SET VAL = INTEGER(RAND() * 20);
db2 (cont.) => CALL DBMS_OUTPUT.PUT_LINE(VAL);
db2 (cont.) => END WHILE LOOP;
db2 (cont.) => END @
DB20000I The SQL command completed successfully.
Line 2,550 ⟶ 3,669:
</pre>
Since V11.1, the builtin module can be used instead of RAND, like this:
<langsyntaxhighlight lang="sql pl">
SET VAL = CALL DBMS_RANDOM.VALUE(0,20);
</syntaxhighlight>
</lang>
 
=={{header|Stata}}==
<langsyntaxhighlight lang="stata">while 1 {
local n=runiformint(0,19)
display `n'
if `n'==10 continue, break
display runiformint(0,19)
}</langsyntaxhighlight>
 
=== Mata ===
<langsyntaxhighlight lang="stata">for (; 1; ) {
printf("%f\n",n=runiformint(1,1,0,19))
if (n==10) break
printf("%f\n",runiformint(1,1,0,19))
}</langsyntaxhighlight>
 
=={{header|Suneido}}==
<langsyntaxhighlight Suneidolang="suneido">forever
{
Print(i = Random(20))
Line 2,577 ⟶ 3,696:
Print(i = Random(20))
}
</syntaxhighlight>
</lang>
 
=={{header|Swift}}==
<langsyntaxhighlight Swiftlang="swift">while true
{
let a = Int(arc4random()) % (20)
Line 2,591 ⟶ 3,710:
print("b: \(b)")
}
</langsyntaxhighlight>{{out}}
<pre>
a: 2 b: 7
Line 2,600 ⟶ 3,719:
 
=={{header|Tcl}}==
<langsyntaxhighlight lang="tcl">while true {
set a [expr int(20*rand())]
puts $a
Line 2,608 ⟶ 3,727:
set b [expr int(20*rand())]
puts $b
}</langsyntaxhighlight>
 
=={{header|TI-89 BASIC}}==
 
<langsyntaxhighlight lang="ti89b">Local x
Loop
rand(20)-1 → x
Line 2,620 ⟶ 3,739:
EndIf
Output 64, 50, rand(20)-1 © paint text to the right on same line
EndLoop</langsyntaxhighlight>
 
=={{header|TorqueScript}}==
 
<syntaxhighlight lang="torque">for(%a = 0; %a > -1; %a++)
{
%number = getRandom(0, 19);
if(%number == 10)
break;
}</syntaxhighlight>
 
=={{header|Transact-SQL}}==
 
<syntaxhighlight lang="transact-sql">
<lang Transact-SQL>
DECLARE @i INT;
WHILE 1=1
Line 2,633 ⟶ 3,761:
PRINT ABS(CHECKSUM(NewId())) % 20;
END;
</syntaxhighlight>
</lang>
 
=={{header|TorqueScript}}==
 
<lang Torque>for(%a = 0; %a > -1; %a++)
{
%number = getRandom(0, 19);
if(%number == 10)
break;
}</lang>
 
=={{header|TUSCRIPT}}==
<langsyntaxhighlight lang="tuscript">
$$ MODE TUSCRIPT
LOOP
Line 2,658 ⟶ 3,777:
IF (10==a,b) STOP
ENDLOOP
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 2,672 ⟶ 3,791:
 
=={{header|uBasic/4tH}}==
<syntaxhighlight lang="text">Do
n = RND(20)
Print n
Until n = 10
Print RND(20)
Loop</langsyntaxhighlight>
 
=={{header|UNIX Shell}}==
This script gets random numbers from jot(1).
Line 2,684 ⟶ 3,804:
{{works with|Bourne Shell}}
{{libheader|jot}}
<langsyntaxhighlight lang="bash">while true; do
a=`jot -w %d -r 1 0 20` || exit $?
echo $a
Line 2,690 ⟶ 3,810:
b=`jot -w %d -r 1 0 20` || exit $?
echo $b
done</langsyntaxhighlight>
 
Korn Shells have a RANDOM parameter.
Line 2,696 ⟶ 3,816:
{{works with|Bash}}
{{works with|pdksh|5.2.14}}
<langsyntaxhighlight lang="bash">while true; do
echo $((a=RANDOM%20))
[ $a -eq 10 ] && break
echo $((b=RANDOM%20))
done</langsyntaxhighlight>
 
=={{header|Ursa}}==
{{trans|Python}}
<langsyntaxhighlight lang="ursa">decl ursa.util.random r
decl int a b
while true
Line 2,714 ⟶ 3,834:
set b (r.getint 19)
out b endl console
end while</langsyntaxhighlight>
 
=={{header|VBA}}==
<syntaxhighlight lang="vb">Public Sub LoopsBreak()
Dim value As Integer
Randomize
Do While True
value = Int(20 * Rnd)
Debug.Print value
If value = 10 Then Exit Do
Debug.Print Int(20 * Rnd)
Loop
End Sub</syntaxhighlight>
 
=={{header|VBScript}}==
Based on BASIC version. Demonstrates breaking out of Do/Loop and For/Next (Exit is good for getting out of functions and subs as well).
 
<langsyntaxhighlight lang="vb">Dim a, b, i
 
Do
Line 2,735 ⟶ 3,867:
b = Int(Rnd * 20)
WScript.Echo vbNullString, b
Next</langsyntaxhighlight>
 
=={{header|Visual Basic .NET}}==
{{trans|C#}}
<syntaxhighlight lang="vbnet">Module Program
Sub Main()
' Initialize with seed 0 to get deterministic output (may vary across .NET versions, though).
Dim rand As New Random(0)
 
Do
Dim first = rand.Next(20) ' Upper bound is exclusive.
Console.Write(first & " ")
 
If first = 10 Then Exit Do
 
Dim second = rand.Next(20)
Console.Write(second & " ")
Loop
End Sub
End Module</syntaxhighlight>
{{out}}
<pre>14 16 15 11 4 11 18 8 19 5 5 9 12 9 19 0 17 19 13 6 16 16 19 0 13 10 18 13 10 </pre>
 
=={{header|V (Vlang)}}==
<syntaxhighlight lang="v (vlang)">import rand
import rand.seed
 
fn main() {
rand.seed(seed.time_seed_array(2))
for {
a := rand.intn(20)?
println(a)
if a == 10 {
break
}
b := rand.intn(20)?
println(b)
}
}</syntaxhighlight>
 
=={{header|Wren}}==
<syntaxhighlight lang="wren">import "random" for Random
 
var r = Random.new()
while (true) {
var n = r.int(20)
System.print(n)
if (n == 10) break
System.print(r.int(20))
} </syntaxhighlight>
 
{{out}}
A (mercifully short) sample run:
<pre>
1
0
13
16
2
0
10
</pre>
 
=={{header|XBasic}}==
{{works with|Windows XBasic}}
<syntaxhighlight lang="xbasic">
PROGRAM "loopbreak"
 
IMPORT "xst" ' for XstGetSystemTime
 
DECLARE FUNCTION Entry()
 
' Pseudo-random number generator
' Based on the rand, srand functions from Kernighan & Ritchie's book
' 'The C Programming Language'
DECLARE FUNCTION Rand()
DECLARE FUNCTION SRand(seed%%)
 
FUNCTION Entry()
XstGetSystemTime (@msec)
SRand(INT(msec) MOD 32768)
DO
a%% = Rand() MOD 20
PRINT FORMAT$("##", a%%);
IF a%% = 10 THEN EXIT DO
b%% = Rand() MOD 20
PRINT FORMAT$(" ##", b%%)
LOOP
PRINT
END FUNCTION
 
' Return pseudo-random integer on 0..32767
FUNCTION Rand()
#next&& = #next&& * 1103515245 + 12345
END FUNCTION USHORT(#next&& / 65536) MOD 32768
 
' Set seed for Rand()
FUNCTION SRand(seed%%)
#next&& = seed%%
END FUNCTION
 
END PROGRAM
</syntaxhighlight>
{{out}}
<pre>
17 3
3 8
9 7
18 5
4 0
9 16
0 19
5 18
12 16
1 1
10
</pre>
 
=={{header|XBS}}==
<syntaxhighlight lang="xbs">while(true){
set n:number = math.random(0,19);
log(`first: {n}`);
if(n==10){stop}
n = math.random(0,19);
log(`second: {n}`);
}</syntaxhighlight>
{{out}}
<pre>
first: 0
second: 13
first: 11
second: 10
first: 16
second: 3
first: 8
second: 19
first: 7
second: 10
first: 10
</pre>
 
=={{header|XPL0}}==
<langsyntaxhighlight XPL0lang="xpl0">include c:\cxpl\codes;
int N;
loop [N:= Ran(20);
Line 2,746 ⟶ 4,017:
IntOut(0, Ran(20));
CrLf(0);
]</langsyntaxhighlight>
 
{{out}}
Line 2,759 ⟶ 4,030:
10
</pre>
 
 
=={{header|Yabasic}}==
<syntaxhighlight lang="yabasic">do
i = int(ran(19))
print i using "##";
print " ";
if i = 10 then break : fi
i = int(ran(19))
print i using "##", " ";
loop
print
end</syntaxhighlight>
 
=={{header|Zig}}==
<syntaxhighlight lang="zig">const std = @import("std");
 
pub fn main() !void {
const RndGen = std.rand.DefaultPrng;
var rnd = RndGen.init(42);
// possible improvement: make rng fair
var rand_num1: u5 = undefined;
var rand_num2: u5 = undefined;
while (true) {
rand_num1 = rnd.random().int(u5) % 20;
try std.io.getStdOut().writer().print("{d}\n", .{rand_num1});
if (rand_num1 == 10)
break;
rand_num2 = rnd.random().int(u5) % 20;
try std.io.getStdOut().writer().print("{d}\n", .{rand_num2});
}
}</syntaxhighlight>
 
=={{header|zkl}}==
<langsyntaxhighlight lang="zkl">while(1){n:=(0).random(20); n.print(" ");
if (n==10){ println(); break; } (0).random().println();
}</langsyntaxhighlight>
{{out}}
<pre>
889

edits