Created
January 11, 2017 00:15
-
-
Save samverneck/e6fe3ac59e5b364a6316777822f54867 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
ladqudrado = int(input("Digite o valor correspondente ao lado de um quadrado: ")) | |
perimetro = ladqudrado * 4 | |
area = ladqudrado * ladqudrado | |
print("perímetro:", perimetro, "- área", area) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment