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

带有进度条的圆周率计算

时间:2020-03-21 15:00:42      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:进度条   range   nbsp   面积   scale   技术   半径   for   math   

                                                    圆周率的计算

计算公式:pi / 4=1 - 1/3 + 1/5 - 1/7 + 1/9 ......

梅钦公式:pi /4 = 4arctan1/5 - arctan1/239

n=圆周长/直径

n=圆面积/半径平方

import math
import time
scale=10
print("执行开始")
t=time.process_time()
for i in range(scale+1):
    a,b=‘**‘*i,‘..‘*(scale-i)
    c=(i/scale)*100
    π=4*(4*math.atan(1/5)-math.atan(1/239))
    print("%{:3}[{}->{}]".format(a,b,c))
    time.sleep(0.1)
print(π)
print("{:.2f}s".format(t))
print("执行结束")

  技术图片

带有进度条的圆周率计算

标签:进度条   range   nbsp   面积   scale   技术   半径   for   math   

原文地址:https://www.cnblogs.com/cnn-ljc/p/12539159.html

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