- En una matrix de dimensiones mxn hallar el mayor valor y el menor valor del arreglo.
DESARROLLO:
leer(matriz [x] [y])
mayor=0; menor=1000;
for(x=0; x
if (matriz [x] [y]> mayor)
mayor= matriz [x] [y];
if (matriz [x] [y]< menor)
menor= matriz [x] [y];
}
}
escribir(mayor, menor)
2 comentarios:
el for no te va a funcionar o sea que no va repetir ninguna vez tiene q ser:
for f=1, x
for c=1, y
Y si la matriz inicia desde el 1001 el algoritmo funcionaria? o si la matriz combina numeros negativos y positivos funcionaria?
Publicar un comentario