martes, 20 de noviembre de 2007

EJERCICIOS SOBRE MATRICES

  • 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; xfor (y=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:

Unknown dijo...

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

Grupo ADSI II dijo...

Y si la matriz inicia desde el 1001 el algoritmo funcionaria? o si la matriz combina numeros negativos y positivos funcionaria?