Ayuda matriz 4x4

Iniciado por Ozymxndias, 9 Mayo 2018, 19:57 PM

0 Miembros y 1 Visitante están viendo este tema.

Ozymxndias

hola, soy nuevo en esto de la programacion y necesito ayuda crear una funcion que solicite numeros para una matriz 4x4, luego que muestre el contenido de la matriz y que luego los sume. Alguien que me pueda ayudar?

Yuki

¿Podrías mostrarnos el código que tenes hasta el momento?

Beginner Web

Código (cpp) [Seleccionar]

#include <iostream>

using namespace std;

const int FILA=4, COLUMNA=4;
typedef int matriz[FILA][COLUMNA];

void cargar_matriz(matriz &n);
void mostrar_matriz(matriz n);
void sumar_contenido(matriz n);

int main()
{
matriz mi_matriz;
cargar_matriz(mi_matriz);
mostrar_matriz(mi_matriz);
sumar_contenido(mi_matriz);
system("pause");
return 0;
}

void cargar_matriz(matriz &n)
{
for(int i=0; i<FILA; i++){
for(int k=0; k<COLUMNA; k++){
cout << "Ingrese elemento posicion[" << i << "][" << k << "]:";
cin >> n[i][k];
}
}
}

void mostrar_matriz(matriz n)
{
for(int i=0; i<FILA; i++){
for(int k=0; k<COLUMNA; k++){
cout << "[" << n[i][k] << "]";
}
cout << endl;
}
}

void sumar_contenido(matriz n)
{
int suma=0;
for(int i=0; i<FILA; i++){
for(int k=0; k<COLUMNA; k++){
suma+=n[i][k];
}
}
cout << "Suma: " << suma << endl;
}
7w7