Last active
February 17, 2018 04:59
-
-
Save franciscojsc/0beff1b5bd20dfcbae811514f29bcda5 to your computer and use it in GitHub Desktop.
Área do circulo em Python
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
raio = float(input('Entre com o valor do raio, para obter a área: ')) | |
area = 3.14 * (raio * raio) | |
print("A área do círculo: {:.2f}".format(area)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment