Guest User

Untitled

a guest
Oct 17th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. fatorial = (x) ->
  2. if x <= 1
  3. 1
  4. else
  5. x * fatorial(x-1)
  6.  
  7. e = 0
  8.  
  9. for x in [0..100]
  10. e += 1 / fatorial(x)
  11.  
  12. alert(e)
Add Comment
Please, Sign In to add comment