Can anyone help me with an exercise in visualg? is as follows: Exercise calls like this:
Write a program that reads a person's age. At the end, display whether or not that person is of age.
Console
What is your age: 17.
adult age = FALSE
I want you to present a false result at the end for those under 18 years of age and true for those over the age of 18.
algoritmo"exercício"
var
// Seção de Declarações das variáveis
Idade: inteiro
Valor: logico
inicio
// Seção de Comandos, procedimento, funções, operadores, etc...
Idade <- (18)
escreva ("Digite sua idade: ")
leia (idade)
escreva
fimalgoritmo
The code I made is the one above but it is giving error.