Created
June 24, 2015 10:16
-
-
Save chingovan/8f0e270652b3f8409354 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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