Techas Posted August 18, 2011 Report Share Posted August 18, 2011 Estou a trabalhar com uma API e neste casao estou a usar este call em particular: https://docs.developer.betfair.com/betfair/...-MC.00008315-MCCom o seguinte código recebo todos os valores de .priceFor i = 0 To .bets.Length - 1 With .bets(i) Print(.price) End With NextDá para calcular a média dos valores que recebo?Não sei se será possível.Obrigado Quote Link to comment Share on other sites More sharing options...
0 Xistyle Posted August 19, 2011 Report Share Posted August 19, 2011 Você já tem a quantidade de elementos, então precisa criar apenas uma variável que contenha a soma total desses elementos:Dim Total As Double = 0.0 For i = 0 To .bets.Length = 1 With .bets(i) ' Soma todos os "prices" Total += .price End With Next Print ( Total / .bets.Length ) Quote Link to comment Share on other sites More sharing options...
Question
Techas
Estou a trabalhar com uma API e neste casao estou a usar este call em particular: https://docs.developer.betfair.com/betfair/...-MC.00008315-MC
Com o seguinte código recebo todos os valores de .price
Dá para calcular a média dos valores que recebo?
Não sei se será possível.
Obrigado
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.