Posts by Matheus Cavalari Nunes • 1 point
1 post
-
-1
votes1
answer110
viewsQ: whether the number is even or odd in a single array
float vet[10]; //processamento for(x=0;x<=9;x++) { printf("\n informe o %d° número:",x+1); scanf("%f",&vet[x]); //saída de dados if (vet[x] % 2 == 0) { printf("\n O número %2.f é…