RosettaCodeData/Task/Loops-Nested/Stata/loops-nested-2.stata

17 lines
222 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
local q 0
forv i=1/20 {
forv j=1/20 {
display "check `i',`j'"
if el("a",`i',`j')==20 {
display "found at `i',`j'"
local q 1
continue, break
}
}
if `q' continue, break
}
if !`q' {
display "not found"
}