I have to deliver this question and I’ve tried and failed to answer. About Vetor

Asked

Viewed 37 times

-1

  1. Create a vector of 10 positions and enter integers randomly. Then enter a number and if it is in the vector, save its position to show at the end of the program. Otherwise show the message at the end of the program "NUMBER NOT FOUND".
  • 3

    edit the question and put what you’ve tried so far

1 answer

2

If I still remember something visualg is like this

    algoritmo
    var 
numerodesejado : inteiro
posicaodesejada : inteiro
i: inteiro
    numeros: vetor[1..10] de inteiro
    inicio
    posicaodesejada <- 0
    numerodesejado <-10
    vetor[1] <-5
    vetor[2] <-10
    vetor[3] <-15
    vetor[4] <- 20
    vetor[5] <- 25
    vetor[6] <-30
    vetor[7] <-35
    vetor[8] <-40
    vetor[9] <-45
    vetor[10] <-50
      para i de 1 ate 10  faca
        se vetor[i]= numerodesejado entao
         posicaodesejada <- i

        fimse
      fimpara
    se posicaodesejada > 0 entao
    escreval ("A posição desejada é ", posicaodesejada)
    senao
    escreval ("POSICAO NÃO ENCONTRADA!")
    fimse

    fimalgoritmo

Browser other questions tagged

You are not signed in. Login or sign up in order to post.