-4
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.
print('='*5, 'Aliste-se no Exército Brasileiro', '='*5)
idade = int(input('Digite sua idade: '))
peso = int(input('Digite seu peso: '))
altura = float(input('Digite sua altura: ex:1.7 '))
apto = ' '
if idade >= 18:
apto = '1'
else:
apto = '0'
if peso >= 60:
apto += '1'
else:
apto += '0'
if altura >= 1.70:
apto += '1'
else:
apto += '0'
if apto == '111':
print('Você está apto a alista-se no exército brasileiro, parabéns.')
elif apto == '011':
print('Você não possue Idade sulficiente para ingressar no exército.')
elif apto == '101':
print('Você não possue peso sulficiente para ingressar no exército.')
elif apto == '110':
print('Você não possue altura sulficiente para ingressar no exército.')
elif apto == '100':
print('Você não possue nem Peso nem Altura sulficiente para ingressar no exército.')
elif apto == '001':
print('Você não possue nem Idade nem Peso sulficiente para ingressar no exército.')
elif apto == '010':
print('Você não possue nem Idade nem Altura sulficiente para ingressar no exército.')
else:
print('Você não possui nenhum dos requisitos para entrar no Exército')
Yeah, but I forgot to report q it is necessary to inform in the script what question the candidate (army) fails, age, weight or height or two of or the three...
– Silas Paixão
Silas, and does it need to be in just one text or can it be multiple messages? Please edit your question and add this detail to the statement.
– Woss
No. Now, it’s perfect! rsrs.
– Silas Paixão