codecombat 试玩全攻略 第十八关 最后的kithman族
Posted 节点亲王
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codecombat 试玩全攻略 第十八关 最后的kithman族相关的知识,希望对你有一定的参考价值。
第十八关 最后的kithman族
大家发现没有,这一关跟之前的循环又循环很像,按照蓝色箭头走,右、上、右、下、上、右完成
一个循环。明显要使用while True了。只是中间有了敌人,在适当的地方加上hero.attack(enemy)
命令。
代码如下:
1 # 使用loop循环移动并攻击目标 2 3 while True: 4 hero.moveRight() 5 hero.moveUp() 6 enemy=hero.findNearestEnemy() 7 hero.attack(enemy) 8 hero.attack(enemy) 9 hero.moveRight() 10 hero.moveDown() 11 hero.moveDown() 12 hero.moveUp()
以上是关于codecombat 试玩全攻略 第十八关 最后的kithman族的主要内容,如果未能解决你的问题,请参考以下文章