Write a program that receives 100 numbers entered by the user. At the end the program displays how many numbers you enter are the same as the last number entered.
As far as I can go:
algoritmo "semnome"
// Função :
// Autor :
// Data : 30/05/2017
// Seção de Declarações
var
vet:vetor[1..10] de inteiro
NUM,i,igual:INTEIRO
inicio
Para i <- 1 ate 5 faca
Escreva("Digite um numero: ")
Leia(num)
fimpara
para i <- 1 ate 5 faca
se(num = vet[5])entao
igual <- num + vet[10]
fimse
fimpara
Escreva(igual)
fimalgoritmo
How do I compare values and show how many numbers are the same?