I'm having problems with this program, because when I put it to work and I type a value greater than 18, a message appears saying that it is missing a FIMSE
and that there is a FIMENQUANTO
without a corresponding ENQUANTO
. the purpose of the program: Make a program that asks for fifteen ages and check the age group according to the table below. Display all incoming and outgoing data.
inicio
n <- 0
i <- 0
escreval ("Digite 15 idades: ")
enquanto (i < 15) faca
leia (n)
i <- i + 1
se (n < 18) entao
escreval ("Sua idade corresponde a classificação: criança")
senao se (n < 30) entao
escreval ("Sua idade corresponde a classificação: jovem")
senao se (n < 60) entao
escreval ("Sua idade corresponde a classificação: adulto")
senao
escreval ("Sua idade corresponde a classificação: idoso")
fimse
fimenquanto
fimalgoritmo