Jump to content
Fórum Script Brasil
  • 0

Verificar se existem valores iguais em um vetor


EduardoFerreira

Question

Galera, estou com sérias dificuldades em vetor, principalmente nesse exercício:

Faça um programa que leia um vetor de 10 posições e verifique se existem valores iguais e os escreva.

Tentei várias vezes e busquei solução na internet, mas não entendi alguma. Parei aqui no código, ou seja só preenchi ele mesmo, tem como me ajudarem?

#include <stdio.h>

#include <stdlib.h>

// Faça um programa que leia um vetor de 10 posições e verifique se existem valores iguais e os escreva.

int main (){

int i;

int vetor[10];

for(i=0;i<10;i++){

printf("Digite o valor do vetor na posicao %d\n", i);

scanf("%d", &vetor);

}

system("pause");

return 0;

}

Edited by EduardoFerreira
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...