计算思维:蒙特卡罗方法求“圆周率”
Posted oycc2000
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算思维:蒙特卡罗方法求“圆周率”相关的知识,希望对你有一定的参考价值。
#CalPiV2.py
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("运行时间是::.5fs".format(perf_counter()-start))
以上是关于计算思维:蒙特卡罗方法求“圆周率”的主要内容,如果未能解决你的问题,请参考以下文章