够无聊的写这个,为防止需要的人也无聊一遍,写个吧 算法有n种,但是,咱们一种就够用了 --数组倒序排列 local function orderByDesc( input ) local output = {} local count = #input do table.insert(output, input[count] ) count = count - end return output end --进制转换,英文不行只好用拼音 --@dec 10进制数据,好吧,只要是数字就呆以了 --…