We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
「打断」陈述和下面的“继续”陈述里有这样两段代码
// 打断代码 变量 日志 = 【"好","好","好","错误","好","好"】 对于(变量 i = 0;i 小 日志。长度();i++)「 如果(日志【i】等 "错误")「 系统。打印行("错误在:" + 数到串(i)+ "行") 打断 」 」 // 继续代码 变量 列表 = 【482,9654,861,6720,5738,2045,18397】 对于(变量 i = 0;i 小 列表。长度();i++)「 如果(列表【i】% 2 等 0)继续 系统。打印(数到串(列表【i】)+ " ") 」 系统。打印行("")
这两段的无法运行,打印语句都使用了方法“数到串()”,但是该方法并没有引入或定义,直接运行代码就报错了。得到错误提示如下
未定义的变量「数到串」。
The text was updated successfully, but these errors were encountered:
我看明白了 ,其实是调用“数字”下面的“数到串”方法吧? 原官网教程代码应该从“数到串(列表【i】)”改成"数字。数到串(列表【i】)"
Sorry, something went wrong.
No branches or pull requests
「打断」陈述和下面的“继续”陈述里有这样两段代码
这两段的无法运行,打印语句都使用了方法“数到串()”,但是该方法并没有引入或定义,直接运行代码就报错了。得到错误提示如下
The text was updated successfully, but these errors were encountered: