Code: Select all
For nItem:= 1 to 10
for nItem2:= 1 to 10
if aMatriz[ nItem ][ nItem2 ] == aMatriz2[ nItem ] [ nItem2 ]
? "son iguales"
endif
next nItem2
next nItem
Podrían indicarme como?
Gracias.
Code: Select all
For nItem:= 1 to 10
for nItem2:= 1 to 10
if aMatriz[ nItem ][ nItem2 ] == aMatriz2[ nItem ] [ nItem2 ]
? "son iguales"
endif
next nItem2
next nItem
Code: Select all
if ! aMatriz == aMatriz2
MsgInfo( "distintos" )
else
MsgInfo( "iguales" )
endif
Ummm... seria interesante aplicar algun tipo de algoritmo de ordenacionAntonio Linares wrote:Gustavo,
Prueba con:Code: Select all
if ! aMatriz == aMatriz2 MsgInfo( "distintos" ) else MsgInfo( "iguales" ) endif