挑战:识别通过传送门的跳跃重复模式。
在这项挑战中,有一种简单的模式可以应用到每颗宝石上。想出如何收集第一颗宝石,然后看看 同样的模式是否适用于所有宝石。
func getGem(){
moveForward()
turnLeft()
moveForward()
moveForward()
collectGem()
turnRight()
}
for i in 1…..5{
getGem()
}
挑战:识别通过传送门的跳跃重复模式。
在这项挑战中,有一种简单的模式可以应用到每颗宝石上。想出如何收集第一颗宝石,然后看看 同样的模式是否适用于所有宝石。
func getGem(){
moveForward()
turnLeft()
moveForward()
moveForward()
collectGem()
turnRight()
}
for i in 1…..5{
getGem()
}
本文标题:HelloByte 8.循环跳跃者
本文链接:https://www.haomeiwen.com/subject/sslenctx.html
网友评论