Created
August 6, 2020 01:23
-
-
Save mmoroni/c27b9eb2d5e3e42dec15f4c98ca4e820 to your computer and use it in GitHub Desktop.
Calculator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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