【代码】嵌套循环 发表于 2020-05-24 更新于 2026-03-17 阅读次数: 116202253521423846前言关卡攻略 源代码12345678910while !isBlocked || !isBlockedLeft { while !isBlock { turnLeft() break } moveForward() if isOnGem { collectGem() }} 完成