Lua   发布时间:2022-04-12  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了如果,否则,否则如果和结束Lua大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
任何想法为什么这是错误的Lua?
if Pieza == 1 then
            if Rotacion == 1 then
                Piezas = Cuadrado1
            else if Rotacion == 2 then
                Piezas = Cuadrado2
            else if Rotacion == 3 then --this is Line 273
                Piezas = Cuadrado3
            else if Rotacion == 4 then
                Piezas = Cuadrado4
            else
                io.write("Me Envio una rotacion que no existe? \n");
            end 
--this end closes the if inside the first if the one using to compare Rotacion
        else if Pieza == 2 then
            if Rotacion == 1 then
                Piezas = I1
            else if Rotacion == 2 then
                Piezas = I2
            else if Rotacion == 3 then
                Piezas = I3
            else if Rotacion == 4 then
                Piezas = I4
            else
                io.write("Me Envio una rotacion que no existe? \n");
            end
--this end closes the if inside the first if the one using to compare Rotacion
        else  --this else is in case Pieza != 1 || 2
            io.write("Me Envio una pieza que no existe? \n");
        end --this close the whole if (the one comparing "Pieza")

我得到的错误是这个’结束’预期(在第273行关闭’if’在’else’附近)

另外,在每个if之后添加结束(这不是应该做,但是尝试它)不工作…

如果你需要我翻译成英语,我会很乐意做评论和一切,但我认为这不是必要的这个问题。

解决方法

这是elseif,不,如果(通知空间)。错误是因为解释器期望结束每个其他块。

有关详细信息,请参阅the manual

大佬总结

以上是大佬教程为你收集整理的如果,否则,否则如果和结束Lua全部内容,希望文章能够帮你解决如果,否则,否则如果和结束Lua所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: