Last active
October 21, 2015 13:37
-
-
Save abacha/2f0d8b5cf2fb4407d326 to your computer and use it in GitHub Desktop.
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
| 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