fork download
  1. #include <stdio.h>
  2.  
  3. int qtde_impar(int vetor[], int tamanho) {
  4. int maior = 1; //precisaria ver se pode ter valores negativos
  5. for (int cont = 0; cont < 10 ; cont++) if (vetor[cont] % 2 == 1 && vetor[cont] > maior) maior = vetor[cont];
  6. return maior;
  7. }
  8.  
  9. int main() {
  10. int vetor[10] = { 8, 2, 1, 4, 5, 3, 7, 2, 9, 0 };
  11. printf("%i\n", qtde_impar(vetor, 10));
  12. }
  13.  
  14. //https://pt.stackoverflow.com/q/212605/101
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
9