Informática, perguntado por anafabiastrasser, 5 meses atrás

Fazer um algoritmo que leia uma matriz 3x3 e imprimir somente os números que são pares.

Soluções para a tarefa

Respondido por joaopedrolemos
2

#include <stdio.h>

#include <stdlib.h>

#include <time.h>

int main() {

   srand(time(NULL));

   int matriz[3][3];

       for (int i=0;i<3;i++){

           for (int u=0;u<3;u++){

               matriz[i][u]=rand()%100+1;

           }

       }

       

       for (int k=0;k<3;k++){

           for (int a=0;a<3;a++){

               if (matriz[k][a]%2==0)printf("%d\t",matriz[k][a]);

           }

       }

   

   return 0;

}

Perguntas interessantes