Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@samueltcsantos
Created November 8, 2014 15:59
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samueltcsantos/60dfb4815d06afe10ab3 to your computer and use it in GitHub Desktop.
Save samueltcsantos/60dfb4815d06afe10ab3 to your computer and use it in GitHub Desktop.
Somando dois número em Visualg
algoritmo "soma"
// Função : Faça um Programa que peça dois números e imprima a soma.
// Autor : Samuel T. C. Santos
// Data : 16/06/2014
var
numeroA, numeroB : inteiro
inicio
escreva("Numero A? ")
leia(numeroA)
escreva("Numero B? ")
leia(numeroB)
escreva("Soma A + B = ", numeroA + numeroB)
fimalgoritmo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment