Ristermit 18/04/2022 #include void main(){ int array[100], i, num, somaPar, ProdutoImpar; somaPar = 0; ProdutoImpar = 1; printf("Entre a quantidade de numeros da lista "); scanf("%d", &num); printf("Entre com os numeros "); for (i = 0; i < num; i++){ scanf("%d", &array[i]); } for (i = 0; i < num; i++){ if (array[i] % 2 == 0){ somaPar = somaPar + array[i]; } else{ ProdutoImpar = ProdutoImpar * array[i]; } } printf("Soma dos pares: %d ", somaPar); printf("Produto dos impares: %d ", ProdutoImpar);}
Ristermit
#include
void main(){
int array[100], i, num, somaPar, ProdutoImpar;
somaPar = 0;
ProdutoImpar = 1;
printf("Entre a quantidade de numeros da lista ");
scanf("%d", &num);
printf("Entre com os numeros ");
for (i = 0; i < num; i++){
scanf("%d", &array[i]);
}
for (i = 0; i < num; i++){
if (array[i] % 2 == 0){
somaPar = somaPar + array[i];
}
else{
ProdutoImpar = ProdutoImpar * array[i];
}
}
printf("Soma dos pares: %d ", somaPar);
printf("Produto dos impares: %d ", ProdutoImpar);
}