Loops/Nested: Difference between revisions

no edit summary
No edit summary
Line 281:
13
20</lang>
 
=={{header|HicEst}}==
<lang hicest>REAL :: n=20, array(n,n)
 
array = NINT( RAN(10,10) )
 
DO row = 1, n
DO col = 1, n
WRITE(Name) row, col, array(row,col)
IF( array(row, col) == 20 ) GOTO 99
ENDDO
ENDDO
 
99 END</lang>
 
=={{header|J}}==
Anonymous user