我想写一个函数,但我不知道怎么做。
local data ={
[100000000]='string1',
[250000000]='string2',
[500000000]='string3',
}
local calc=780325665
我想用 calc 计算每个数据索引,例如
result= calc-(500000000+250000000)
我喜欢奖励结果和数据[500000000],数据[250000000]= string1 and string2
local calc=780325665
for ind,i in pairs(data) do
repeat
if calc< 0 then return end
print(calc,data[ind])
calc=calc-ind
until calc < ind
end
它不像我想的那样工作,我想像我的例子一样
我希望有一个人可以帮助我。
我想创建一个函数来计算总共支付了多少官方金额。这些数字应该还给我。例如。我有 10、25、50 和总数 380
so 385 = (7*50) + (3*10) rest 5
local calc=780325665 --only example number
so i have 100000000,250000000,500000000 and total number calc
calc-(500000000+250000000) rest 30325665 because there are no smaller number
我会根据缩短的频率奖励这两个数字