码迷,mamicode.com
首页 > 其他好文 > 详细

圆周率--习题

时间:2019-03-03 19:05:12      阅读:412      评论:0      收藏:0      [点我收藏+]

标签:its   image   +=   tar   range   time   运行时   hit   技术   

技术图片

技术图片

from random import random
from time import perf_counter
DARTS=1000*1000
hits=0.0
start=perf_counter()
for i in range(1,DARTS+1):
x,y=random(),random()
dist=pow(x**2+y**2,0.5)
if dist<=1.0:
hits=hits+1
pi=4*(hits/DARTS)
print("圆周率值是:{}".format(pi))
print("运行时间是:{:2f}s".format(perf_counter()-start))

 

技术图片

pi=0
N=100
for k in range(N):
pi+=1/pow(16,k)*(\
4/(8*k+1)-\
2/(8*k+4)-\
1/(8*k+5)-\
1/(8*k+6)\
)
print("圆周率是:{}".format(pi))

技术图片

 



圆周率--习题

标签:its   image   +=   tar   range   time   运行时   hit   技术   

原文地址:https://www.cnblogs.com/pengwa1226/p/10466863.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!