3
I started recently with programming, and I’m making an algorithm that guesses the user’s age, and I’m using Visualg to practice programming logic.
How to put commands sim
or não
in the Visualg, and if the person chooses sim
, present the text A
, if she chooses não
, present the text B
and continue to ask the next questions.
So far I’ve gotten to that 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
If I’m not mistaken, it’s the
se
,entao
,fim se
take a look at the manual...– MagicHat