Skip to content

Instantly share code, notes, and snippets.

@renzon
Last active June 4, 2018 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save renzon/086907d52a027b639f44550c5177841c to your computer and use it in GitHub Desktop.
Save renzon/086907d52a027b639f44550c5177841c to your computer and use it in GitHub Desktop.
Classe SOma
class Soma(){
int soma(int a, int b){
return a+b;
}
int soma(int a, int b, int c){
return a+b+c;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment