Last active
June 24, 2023 01:25
-
-
Save CodeWithEdgard/abde3a50a7a5fb728fe63747e73da47b to your computer and use it in GitHub Desktop.
imc
This file contains 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
peso = float(input('Qual seu Peso ?')) | |
altura = float(input('Qual sua Altura ?')) | |
imc = peso/(altura**2) | |
print('Seu IMC é:{}'.format(round(imc))) | |
if imc<=17: | |
print('Muito abaixo do Peso') | |
elif imc<=18.49: | |
print('Abaixo do Peso') | |
elif imc<=24.99: | |
print('Peso Normal') | |
elif imc<=29.99: | |
print('Acima do Peso') | |
elif imc<=39.99: | |
print('Obesidade') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment