Ministério da Educação
Brasil um país de todos
Personal tools
You are here: Home Members Cicero Garrozi Disciplinas 2014 em diante Introdução à Programação Arquivos 2014-2 Algoritmos slides05-for-ex2-versao-input.py
Navigation
Log in


Forgot your password?
 
Document Actions

slides05-for-ex2-versao-input.py

by Cicero Garrozi last modified 2014-04-29 07:03

Click here to get the file

Size 1 kB - File type text/python-source

File contents

maior = 0
menor = 999
quantMulheres = 0
quantHomens = 0
sexoPessoaMaisAlta = ""
somaAlturaMulheres = 0.0
for i in range(1,16):
    altura = float(input("Digite a altura da pessoa:"))
    sexo = raw_input("Digite o sexo da pessoa: ")
    if altura > maior:
        maior = altura
        sexoPessoaMaisAlta = sexo
    if altura < menor:
        menor = altura
    if sexo == "F":
        quantMulheres += 1
        somaAlturaMulheres += altura
    else:
        quantHomens += 1


media = float(somaAlturaMulheres / quantMulheres)
print "Maior altura: %.2f - Menor altura: %.2f"%(maior, menor)
print "Media de altura das mulheres: %.2f"%media
print "Quantidade de homens: ", quantHomens
print "Sexo da pessoa mais alta: ",sexoPessoaMaisAlta


Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: