6
My way out:
Name: So-and-so: so many years
How to break the line on prompt of the Visualg?
To look like this:
Name: So-and-so
Age: So Many Years
6
My way out:
Name: So-and-so: so many years
How to break the line on prompt of the Visualg?
To look like this:
Name: So-and-so
Age: So Many Years
10
To break the line in a text output use the function scribal(). The complete list of functions, operators and other references can be found at that link
algoritmo "quebra_de_linha"
var
idade : inteiro
nome : caractere
inicio
escreval("Informe o nome")
leia(nome)
escreval("Informe a idade")
leia(idade)
escreva("")
escreva("")
escreval("nome: " + nome)
escreval("idade: ", idade)
fimalgoritmo
exit:
ola thanks for your help help me much vlw
-1
simple
var
nome:caracter
idade:inteiro
inicio
escreva("seu nome é: ")
leia(nome)
escreval(" ")
escreva("sua idade é: ")
leia(idade)
escreval(" ")
fimalgoritmo
Browser other questions tagged visualg portugol
You are not signed in. Login or sign up in order to post.
Could you pass the link to download this visual log
– rray
http://www.guanabara.info/2007/09/visualg-v25/
– alexjosesilva
If it was Visual Alg, why did you write Visual Log in the question?
– Maniero