Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Exercicio de C - Vetor Multidimensional
/** Escreva um programa declarando um vetor multidimensional de 2x3x3 de n. inteiros e inicialize-o com "0". Receba via teclado novos valores para todos os elementos do vetor e imprima no video estes novos conteudos. */ #include <stdio.h> int main(){ int vet1[2][3][3]; int x,y,z; printf("Digitacao dos valores inteiros\n\n"); for(x=0;x<=1;x++){ for(y=0;y<=2;y++){ for(z=0;z<=2;z++){ vet1[x][y][z]=0; printf("pagina %d, linha %d, coluna %d: ",x+1,y+1,z+1); scanf("%d",&vet1[x][y][z]); printf("\n"); } } } printf("\n\nImpressao dos valores\n\n"); for(x=0;x<=1;x++){ printf("Pagina %d\n\n",x+1); for(y=0;y<=2;y++){ for(z=0;z<=2;z++) printf("%d\t",vet1[x][y][z]); printf("\n"); } printf("\n\n"); } return 0; }
run
|
edit
|
history
|
help
1
formatting_input_and_output
A_141212_IntercambiarValores
치카냥3
Exploiting uninitialized variable 2
Avance de guia 4- Pregunta 1
CO Assignment 1 Question 2
Minus pointer
Vowel Assignment
DIGITOS DE U. A DECENAS
My first 2D array