Created
August 30, 2017 18:46
-
-
Save rbenvenuto/039665c0ca895306b3c8a58dbe2be185 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 3 | |
#define COLUNAS 6 | |
// Contrua matriz 3x6 de real | |
// que leia números digitados pelo usuário | |
// Se houverem números negativos | |
// trocar pelo numero 1 | |
// Mostrar todos os números | |
// atualizados | |
float matA[LINHAS][COLUNAS]; | |
int i, j; | |
int main() | |
{ | |
// user digita os dados | |
for(i=0; i<LINHAS; i++) | |
{ | |
for(j=0; j<COLUNAS; j++) | |
{ | |
printf("Linha %d, coluna %d\n", i, j); | |
scanf("%f", &matA[i][j]); | |
} | |
} | |
// substituindo os num negativos | |
printf("\n*** Substituindo negativos por 1 ***\n"); | |
for(i=0; i<LINHAS; i++) | |
{ | |
for(j=0; j<COLUNAS; j++) | |
{ | |
if(matA[i][j] < 0) | |
{ | |
matA[i][j] = 1; | |
} | |
} | |
} | |
// printando numeros atualizados | |
printf("\n*** Dados Atualizados ***\n"); | |
for(i=0; i<LINHAS; i++) | |
{ | |
for(j=0; j<COLUNAS; j++) | |
{ | |
printf("Valor em linha %d, coluna %d: %f\n", i, j, matA[i][j]); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment