Skip to content

Instantly share code, notes, and snippets.

@chingovan
Created June 24, 2015 10:16
Show Gist options
  • Save chingovan/8f0e270652b3f8409354 to your computer and use it in GitHub Desktop.
Save chingovan/8f0e270652b3f8409354 to your computer and use it in GitHub Desktop.
eps = float(input("Nhap so sai so :"))
s = 1
t = 1
i = 1
while t > eps:
t = t / i
i = i + 1
s = s + t
print("e = ", s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment