Posts by Silas Paixão • 3 points
2 posts
-
0
votes2
answers59
viewsA: How to ensure that three conditions are met? Is there a better way to do it?
Getting the idea from Anderson Carlos Woss: print('='*5, 'Aliste-se no Exército Brasileiro', '='*5) idade = int(input('Sua idade: ')) peso = float(input('Seu peso: ')) altura = float(input('Sua…
-
-4
votes2
answers59
viewsQ: How to ensure that three conditions are met? Is there a better way to do it?
Program that asks a person’s age, weight and height and decides if they are fit to join the army. To enter, it is necessary to age, weigh more or equal 60 kg and measure more or equal 1,70 meters.…