Jump to content
Fórum Script Brasil
  • 0

Repeticao de numero no array


Átill

Question

Estou tentando fazer um programa no qual o usuário digite um numero não repetido, mas não esta funcionando como deve. Podem me ajudar a achar o erro , fiz somente uma parte até agora

#include <iostream>

using namespace std;

const int maximo = 10;

int main()

{

int opcao_menu,vetor[maximo],cont;

bool resposta =false;

cont = 0 ;

do{

do{

cout << "Menu:" << endl

<< "1 - Inserir um elemento no vetor" << endl

<< "2 - Excluir um elemento do vetor" << endl

<< "3 - Procurar um elemento no vetor" << endl

<< "4 - Imprimir o vetor" << endl

<<"0 - Sair" << endl;

cin >> opcao_menu;

if(opcao_menu >4 || opcao_menu <0)

{

cout << "Numero digitado invalido" << endl;

}

}while(opcao_menu >4 || opcao_menu <1);

switch(opcao_menu)

{

case 1:

cont ++;

cout << "Insira um elemento no vetor: ";

cin >> vetor[cont];

for(int a =0 ; a< cont ;a++)

{

do{

if(vetor[a] == vetor[cont])

{

cout << "Numero já existente, digite novamente: ";

cin >> vetor[cont];

resposta = false;

if(vetor[a] != vetor[cont])

resposta = true;

}

else

resposta = true;

}while(resposta == false);

}

break;

}

}while(opcao_menu != 0 );

return 0;

}

Edited by Átill
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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...