Advertisement
GreMendes

SOMA Recursiva

Aug 18th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Tue Aug 18 20:03:40 2015
  4.  
  5. @author: gregory.mendes
  6. """
  7.  
  8. def soma(x,y):
  9.    if y > x:
  10.         return soma(y,x)
  11.    if y == 0:
  12.        return x
  13.    elif x == 0:
  14.        return y
  15.    else:
  16.       return soma(x+1,y-1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement