I have the following question but I could not figure out how to do it using the command REPITA
:
Write an algorithm that requests the age of several people (USE REPEAT). Enter the total number of people under 25 and the total number of people over 50. The program ends when age is negative (Not to be counted).
This was one that I did very well, but using the command PARA...FACA
:
var
menor,idade,maior,contador:inteiro
idade_media:real
inicio
menor <- 999
para contador de 0 ate 9 faca
escreva ("Idade: ")
leia(idade)
idade_media <- idade_media + idade
se (idade <= menor) entao
menor <- idade
fimse
se (idade>=maior) entao
maior <- idade
fimse
fimpara
idade_media <-idade_media/10
escreval