0

我有以下代码应该只打印一个数字,但它会打印提到的错误:

print(
  math.abs(
    tonumber(TColor, 16) -
    tonumber(FColor, 16)
  ) / 100 * (math.abs(minV - maxV) / 100 * curV) + tonumber(FColor, 16)
)

甚至tostring( math...... )无法解决

4

1 回答 1

2

发生错误是因为其中一个TcolororFcolornil。错误被抛出tonumber()

你可以看到它在这里被复制。

于 2013-09-16T21:33:47.587 回答