ICode国际青少年编程竞赛- Python-4级训练场-while语句入门
1、
while Flyer.disappear():
wait()
Dev.step(2)
2、
Dev.step(1)
while Flyer.disappear():
wait()
Dev.step(5)
3、
while Flyer[0].disappear():
wait()
Dev.step(3)
Dev.step(-1)
while Flyer[0].disappear():
wait()
Dev.step(-4)
while Flyer[1].disappear():
wait()
Dev.step(-3)
4、
for i in range(4):
Dev.turnRight()
Dev.step(2)
while Flyer.disappear():
wait()
Dev.step(4)
for i in range(2):
Dev.turnLeft()
Dev.step(2)
5、
while not Flyer.disappear():
wait()
Spaceship.step(3)
6、
Spaceship.step()
while not Flyer.disappear():
wait()
Spaceship.step(4)
7、
Spaceship.step(3)
while not Flyer[0].disappear():
wait()
Spaceship.step(2)
Spaceship.turnRight()
while not Flyer[1].disappear():
wait()
Spaceship.step(3)
8、
for i in range(2):
Spaceship.step(3)
while not Flyer[1 - i].disappear():
wait()
Spaceship.step(3)
9、
Dev.step(8)
while Dev.energy<100:
wait()
Dev.step(4)
10、
Dev.turnRight()
Dev.step(3)
Dev.step(-1)
while Dev.energy < 50:
wait()
Dev.step(-6)
11、
Dev.turnRight()
Dev.step(4)
Dev.step(-1)
while Dev.energy < 70:
wait()
Dev.step(-3)
Dev.turnLeft()
Dev.step(6)
12、
Dev.step(8)
Dev.turnLeft()
Dev.step(2)
while Dev.energy < 100:
wait()
Dev.step(2)
Dev.step(-8)
13、
Dev.step(4)
Dev.turnLeft()
Dev.step(3)
while Dev.energy < 50:
wait()
Dev.step(-4)
Dev.turnLeft()
Dev.step(-2)
14、
Flyer[1].step(5)
Dev.step(-3)
Dev.turnLeft()
Dev.step(8)
while Dev.energy < 60:
wait()
Dev.turnRight()
Dev.step(5)
Dev.turnRight()
Dev.step()
15、
Dev.step(2) # 例如Dev前进2步,移动到Item[0]的移动路线上
# 下面的Item[0]在移动过程中x坐标不变。Item[0].y的值不断变化
# 当Item[0].y 不等于Dev.y时,Dev就可以保持不动,等待绿色能量“自投罗网”
while Item[0].y != Dev.y:
wait()
# 接下来Dev移动到Item[1]的移动路线上
Dev.turnLeft()
Dev.step(3)
# Item[1]在移动过程中y坐标不变。Item[1].x值不断变化,当Item[1].x != Dev.x时,Dev就可以保持不动
while Item[1].x != Dev.x:
wait()
16、
Dev.step(Item.x - Dev.x)
while Dev.y != Item.y:
wait()
17、
Dev.step(Dev.y - Item[0].y)
while Item[0].x != Dev.x:
wait()
Dev.step(Dev.y - Item[1].y)
18、
Dev.step(2)
Dev.turnRight()
Dev.step(6)
while Item.x != Dev.x:
wait()
19、
Dev.step(3)
Dev.turnLeft()
Dev.step(3)
Spaceship.step(4)
Spaceship.turnRight()
Spaceship.step(4)
Dev.step(3)
while Dev.y != Item[1].y:
wait()
20、
while Flyer.disappear():
wait()
Dev.step(6)
while Item[0].x != Dev.x:
wait()
Dev.step()