RosettaCodeData/Task/Loops-Nested/AutoHotkey/loops-nested.ahk

25 lines
256 B
AutoHotkey
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Loop, 10
{
i := A_Index
Loop, 10
{
j := A_Index
Random, a%i%%j%, 1, 20
}
}
Loop, 10
{
i := A_Index
Loop, 10
{
j := A_Index
If (a%i%%j% == 20)
Goto finish
}
}
finish:
MsgBox % "a[" . i . "][" . j . "]" is 20
Return