2
Write a program that receives 100 numbers typed by the user. At the end the program displays how many numbers are reported equal to the last number typed.
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 the values and show how many numbers are equal?