如何计算PING延迟的平均值?
本帖最后由 59993330 于 2009-7-31 11:44 编辑请问如何计算PING 100次的延迟平均值呢?
请高手给些思路,若有实例更为感谢!
Ping("www.baidu.com") 本帖最后由 superflq 于 2009-7-31 11:14 编辑
$times=0
For $i=1 to 100
$y=Ping("www.baidu.com")
$times+=$y
$i+=1
Next
MsgBox(0,"",$times/100) 谢谢楼上!
dim $x
for $i=1 to 100
$x=$x+ping("www.baidu.com")
next
$x=($x/100)
msgbox(0,0,$x)
thesnow 提供的方法
页:
[1]