Matriz de 6x3 con números naturales
DESARROLLAMOS TUS ALGORITMOS (+51) 988411115
09. Elaborar un programa que muestre la siguiente matriz:
¿EN QUE PROGRAMA QUIERES VER EL CÓDIGO? :
Curso de autocad, google colaboratory, curso de C, certificacion google, curso marketing digital, cisco python, páginas Web.
PSeInt - FLEXIBLEDESCARGA CÓDIGO
//-------------------------//| 1 | 2 | 2 | 3 | 3 | 3 |//| 1 | 2 | 2 | 3 | 3 | 3 |//| 1 | 2 | 2 | 3 | 3 | 3 |//-------------------------Algoritmo Array_Bidimencional_09 Dimension matrix[3,6] //Cargar Array Bidimencional Para f = 1 hasta 3 con paso 1 hacer Para c = 1 hasta 6 con paso 1 hacer Segun c Hacer 1: matrix[f,c]=1 2,3: matrix[f,c]=2 4,5,6: matrix[f,c]=3 Fin Segun FinPara FinPara //Mostrar Array Bidimencional Para f = 1 hasta 3 con paso 1 hacer Escribir matrix[f,1], " ", matrix[f,2], " ", matrix[f,3], " ",matrix[f,4], " ",matrix[f,5], " ",matrix[f,6] FinPara FinAlgoritmo PSeInt - ESTRICTODESCARGA CÓDIGO
//-------------------------//| 1 | 2 | 2 | 3 | 3 | 3 |//| 1 | 2 | 2 | 3 | 3 | 3 |//| 1 | 2 | 2 | 3 | 3 | 3 |//-------------------------Algoritmo Array_Bidimencional_09 Definir m, f, c como Entero; Dimension m[3,6]; //Cargar Array Bidimencional Para f
Derechos de autor
Si cree que algún contenido infringe derechos de autor o propiedad intelectual, contacte en [email protected].
Copyright notice
If you believe any content infringes copyright or intellectual property rights, please contact [email protected].
Si cree que algún contenido infringe derechos de autor o propiedad intelectual, contacte en [email protected].
Copyright notice
If you believe any content infringes copyright or intellectual property rights, please contact [email protected].