How to break the line at the Visualg prompt?

Asked

Viewed 40,159 times

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

  • Could you pass the link to download this visual log

  • http://www.guanabara.info/2007/09/visualg-v25/

  • 1

    If it was Visual Alg, why did you write Visual Log in the question?

2 answers

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:

inserir a descrição da imagem aqui

  • 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

You are not signed in. Login or sign up in order to post.