Créer jeu
Jouer Compléter
CONDICIONAL .
numero = ____________________ ( " indica un numero : " )
numero = ____________________ ( numero )

____________________ numero> = 0 :
____________________ ( " es positivo " )
if numeromax :
max = numero
____________________ ( " Vuelta ( " , i , " ) : " , max )
____________________ ( " El valor máximo es : " , max )





BUCLE .
max = 0
____________________ i in range ( 10 ) :
numero = int ( input ( " Dame un número : " ) )
____________________ numero>max :
max = numero
____________________ ( " Vuelta ( " , i , " ) : " , max )
____________________ ( " El valor máximo es : " , max )