Skip to content

Instantly share code, notes, and snippets.

@catalunha
Last active October 28, 2020 13:16
Show Gist options
  • Save catalunha/8c5bd761e26b22b4177432d73d02d827 to your computer and use it in GitHub Desktop.
Save catalunha/8c5bd761e26b22b4177432d73d02d827 to your computer and use it in GitHub Desktop.
Programa Calculadora Paradigma Estruturado
/// Programa Calculadora Abordagem ou Paradigma Estruturado
void main() {
//Entrada
int numero1=1;
int numero2=2;
//Processamento
int resultado = numero1+numero2;
//Saida
print('Soma $numero1 + $numero2 = $resultado');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment