Advertisement
obernardovieira

Maior numero (numeros introduzidos pelo usuário)

Nov 12th, 2013
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.48 KB | None | 0 0
  1. def strtolist(string) :
  2.     lista = []
  3.     while True:
  4.         x = string.find(',')
  5.         if x == -1:
  6.             num = string
  7.             lista.append(int(num))
  8.             break
  9.         num = string[0:x]
  10.         lista.append(int(num))
  11.         string = string[:0] + string[x+1:]
  12.     return lista
  13.    
  14.    
  15. def maiornum(lista) :
  16.     r=0
  17.     for n in range(0,len(lista)):
  18.         if lista[n]>r :
  19.             r=lista[n]
  20.     return r
  21.    
  22.    
  23. numeros = []
  24. numeros = input('Digite uma lista de numeros (separados por ,): ') #Ex: 2,5,3,4,9,1
  25. maiornum(strtolist(numeros))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement