Last active
June 24, 2023 15:11
-
-
Save CodeWithEdgard/072da3718b48e7bacc5ed9103e4bcb92 to your computer and use it in GitHub Desktop.
IMC - v1.1- adicionado o nome- e algumas melhorias nas linhas dos codigos.
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
nome = input('Qual Seu Nome ?') | |
peso = float(input('Qual seu Peso ?')) | |
altura = float(input('Qual sua Altura ?')) | |
imc = peso/altura**2 | |
print(f'{nome} seu Indice de Massa Muscular é: {imc:.2f}') | |
print('E voce esta:') | |
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