0
Alguno me podrĂa decir por quĂ© me genera error este codigo
x=3 while(x==3) : Pes = (float (input("ingrece el peso: "))) Alt = ( float (input("ingrece la altura: "))) Imc=(Pes/(Alt**2)) if Imc>0 and Imc<18.5 : print("Underweigth") elif Imc>=18.5 and Imc <=24.9 : print("Normal") elif Imc>=25 and Imc <=29.9 : print("Overweigth") elif Imc>=30 : print("Obesity")
2 Answers
+ 2
Es algo complicado decirte con exactitud quĂ© provocĂł el error sin saber quĂ© dice el mismo. Nos podrĂas facilitar esa informaciĂłn?
0
Remove the first two lines. The while loop isn't necessary and if x doesn't change it will loop forever.