How to break the line at the VisuAlg prompt?

5

My output:

  

Name: So-and-so: so many years

How to break the line at prompt of VisuAlg?

To look like this:

  

Name: So-and-so

     

Age: So Many Years

    
asked by anonymous 16.10.2014 / 14:29

2 answers

7

To break the line into a text output use the type () . The full list of functions, operators and other references can be found

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

output:

    
16.10.2014 / 14:35
-1

simple

var
nome:caracter
idade:inteiro

inicio
escreva("seu nome é: ")
leia(nome)
escreval(" ")
escreva("sua idade é: ")
leia(idade)
escreval(" ")

fimalgoritmo
    
22.08.2016 / 14:20