我正在製作一個隨機的單詞生成器,而且我遇到了一個小問題。我試圖從持有closedLetters(c,d,f等)的表中打印值,但它不起作用。它返回零。幫幫我?表值返回零?
local closedLetters={b, c, d, f, g, h, j, k, l, m, n, p, q, r, s, t, v, w, x, z}
local openLetters={a, e, i, o, u, y}
print(closedLetters[2])
(這段代碼只是一個例子,我已經建立了,實際上更喜歡這個)
local closedLetters={b, c, d, f, g, h, j, k, l, m, n, p, q, r, s, t, v, w, x, z}
local openLetters={a, e, i, o, u, y}
print(closedLetters[math.random(#closedLetters)]..openLetters[math.random(#openLetters)])
這是真棒,和OFC方便。但是,因爲盧阿的'一切都是桌子'。我認爲我們的解決方案基本上是一樣的:) – Eyeball
@Eyeball實際上字符串不是引擎蓋下的表格。表是可變的,字符串不是。 – greatwolf
I c。涼。感謝您的照明:) – Eyeball