Created
August 30, 2017 18:50
-
-
Save rbenvenuto/93bcc04de27666381dc273cd4fdd7d4c to your computer and use it in GitHub Desktop.
Exercício com matrizes em C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#define LINHAS 6 | |
#define COLUNAS 6 | |
// Faça uma Matriz de 6x6 | |
// para os usuarios preencherem | |
// com elementos do tipo INT | |
// Em seguida, apresente na tela | |
// somente os valores PARES | |
int main() | |
{ | |
int matA[LINHAS][COLUNAS]; | |
int i, j; | |
for(i=0; i<LINHAS; i++) | |
{ | |
for(j=0; j<COLUNAS; j++) | |
{ | |
printf("Digite valor para a linha %d, coluna %d \n", i, j); | |
scanf("%d", &matA[i][j]); | |
} | |
} | |
printf("*** Apenas valores pares ***"); | |
for(i=0; i<LINHAS; i++) | |
{ | |
for(j=0; j<COLUNAS; j++) | |
{ | |
if(matA[i][j]%2 == 0) | |
{ | |
printf("Valor da linha %d, coluna %d: %d\n", i, j, matA[i][j]); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment