【代码】检查这个与那个 发表于 2020-04-12 更新于 2025-12-26 阅读次数: 前言关卡攻略 源代码12345678910111213141516171819for i in 1 ... 7 { moveForward() if isOnGem { collectGem() } if isBlockedLeft { turnRight() moveForward() moveForward() if isBlocked && isOnClosedSwitch { toggleSwitch() } turnLeft() turnLeft() moveForward() moveForward() turnRight() }} 完成