Tengo otra duda , que función tiene dentro de la matriz la "profundidad" ,por ejemplo a la hora de solicitar que ingresemos el tamaño que tendrá, cuando quiera mostrar los "números" que le ingresé a la matriz en su totalidad, debo mostrar también los de "profundidad" ?
Código (cpp) [Seleccionar]
int matriz [20][20][20];
for (int i=0; i<filas; i++) {
for (int j=0; j<columnas; j++) {
for (int k=0; k<profundidad; k++) {
cout<<"Digite un valor: "; cin>>matriz[i][j][k];
}
}
}
for (int i=0; i<filas; i++) {
for (int j=0; j<columnas; j++) {
for (int k=0; k<profundidad; k++) {
cout<<matriz[i][j][k] << " ";
}
}
}