This website requires JavaScript.
Explore
Help
Register
Sign In
Bhasher
/
linfo2335-programming-paradigms
Watch
1
Star
0
Fork
You've already forked linfo2335-programming-paradigms
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
07597c819e
linfo2335-programming-parad...
/
project-3
/
regex
/
code
/
code1271.py
8 lines
144 B
Python
Raw
Blame
History
def
approx_pi
(
i
)
:
n
=
0
pi
=
0
if
n
<
=
i
:
j
=
(
(
-
1
)
*
*
n
)
/
(
(
2
*
n
)
+
1
)
pi
+
=
4
*
j
n
+
=
1
return
pi
Reference in New Issue
View Git Blame
Copy Permalink