I need to build an algorithm that traverses a 3 x 3 matrix I must fill this matrix before, print all the numbers that are under a value entered by the user.
Algoritmo Arreglo
Dimension A[3,3];
Definir A Como Entero;
Definir i Como Entero;
Definir j como entero;
Para i<-0 Hasta 2 Con Paso 1 Hacer
Escribir "De un numero";
Leer A[i,j];
FinPara
Para i<-0 Hasta 2 Con Paso 1 Hacer
Escribir Sin Saltar A[i,j];
FinPara
FinAlgoritmo