Skip to content

Instantly share code, notes, and snippets.

@abacha
Last active October 21, 2015 13:37
Show Gist options
  • Select an option

  • Save abacha/2f0d8b5cf2fb4407d326 to your computer and use it in GitHub Desktop.

Select an option

Save abacha/2f0d8b5cf2fb4407d326 to your computer and use it in GitHub Desktop.
class Retangulo {
int largura, altura;
void setAltura(int altura) {
this.altura = altura;
}
void setLargura(int largura) {
this.largura = largura;
}
int calculaArea() {
this.largura * this.altura;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment