Two questions about vectors and matrices. 1_ Give any vector with 100 integers, make a module that informs whether there is or not repeated numbers in that vector.
Algorithm "Repeat in vector"
Var
// Seção de Declarações das variáveis
vet : vetor [1..10] de inteiro
i,j, aux: inteiro
rep: inteiro
Inicio
// Seção de Comandos, procedimento, funções, operadores, etc...
para i de 1 ate 10 faca
leia (vet[i])
fimpara
para i de 1 ate 9 faca
para j de i ate 10 faca
se vet[j] < vet[i] entao
aux <- vet[j]
vet[j] <- vet[i]
vet[i]<- aux
fimse
fimpara
fimpara
para i de 1 ate 10 faca
escreva (vet[i])
fimpara
rep<- (vet[1])
para i de 1 ate 10 faca
se (vet[i] = rep) entao
escreva ("O numero", rep," está repetido.")
fimse
fimpara
Fimalgoritmo
// In this algorithm unfortunately it only points if you have only 1 number repeated.
2_ Given a vector of 20 real numbers and a 20x20 matrix of real numbers, rows and columns are equal to the vector, be it in the given order or in reverse order. Assume that there is a line or column equal to the vector in the array.