Skip to content

Existe maneira de interromper a execução? #283

Closed Answered by dgadelha
CaduAngelo asked this question in Dúvidas / Perguntas
Discussion options

You must be logged in to vote

Olá,

Se o código estiver em execução na função inicio, você pode a qualquer momento interrompê-la chamando retorne:

programa {
  funcao inicio() {
    caracter valor
    escreva("Digite S para Continuar ou N para Interromper: ")
    leia(valor)
    se (valor == 'N') {
      retorne
    }
    escreva("Você continuou!")
  }
}

Replies: 3 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@SrMisterio39
Comment options

Answer selected by dgadelha
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants