Skip to content

Instantly share code, notes, and snippets.

@mmoroni
Created August 6, 2020 01:23
Show Gist options
  • Save mmoroni/c27b9eb2d5e3e42dec15f4c98ca4e820 to your computer and use it in GitHub Desktop.
Save mmoroni/c27b9eb2d5e3e42dec15f4c98ca4e820 to your computer and use it in GitHub Desktop.
Calculator
// funcao para somar a com b
public int Sum(int a, int b)
{
// resultado
int result;
// soma a com b
result = a + b;
// retorna o resultado
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment