I recently started programming, and I'm doing an algorithm that guesses the user's age, and I'm using Visualg to practice programming logic.
How to put sim
or não
commands in Visualg, and if the person chooses sim
, enter the text A
, if he choos não
, present the text B
and continue performing the questions.
So far I've come to this part:
algoritmo "valores"
var
N1,S,S2,S3: inteiro
inicio
Escreva ("Ola,vou adivinhar a sua idade.Pense em um numero de 1 a 10: ")
Leia (N1)
S <- N1 * 2
Escreval ("Ok,multipliquei esse numero por 2 e a soma é ",S,".Agora agora vou adicionar 5")
S2 <- S + 5
Escreval ("A soma entre ",S," e 5 é ",S2,".Sabendo disso, vou multiplicar por 50")
S3 <- S2 * 50
Escreval ("A multiplicação de ",S2, " e 50 é ",S3,".")
Esreval ("Você ja fez aniversario esse ano?")
fimalgoritmo