Advertisement
Bolodefchoco_LUAXML

[Math] math.average

Jun 19th, 2016
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. --Creator: Bolodefchoco
  2. --Made in: 16/06/2016
  3. --Last update: 16/06/2016
  4. --[[ Notes:
  5.     Does:
  6.         Retorna a média entre os números
  7.     Args
  8.         ... --> Números
  9. ]]--
  10.  
  11. math.average=function(...)
  12.     local list = {...}
  13.     local sum = 0
  14.     for _,number in next,list do
  15.         sum = sum + number
  16.     end
  17.     return sum/#list
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement