当前位置:   article > 正文

ICode国际青少年编程竞赛- Python-1级训练场-for循环与变量_icode python

icode python

ICode国际青少年编程竞赛- Python-1级训练场-for循环与变量

1、

在这里插入图片描述

a = 1
for i in range(4):
    Spaceship.step(a)
    Dev.step(2)
    Dev.step(-2)
    a = a + 1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

2、

在这里插入图片描述

a = 1
for i in range(4):
    Spaceship.step(a)
    Dev.step(3)
    Dev.step(-3)
    a = a + 1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

3、
在这里插入图片描述

a = 1
for i in range(4):
    Dev.turnLeft()
    Dev.step(a)
    a = a + 1
  • 1
  • 2
  • 3
  • 4
  • 5

4、

在这里插入图片描述

a = 5
for i in range(5):
    Dev.step(a)
    Dev.turnRight()
    a = a - 1
  • 1
  • 2
  • 3
  • 4
  • 5

5、
在这里插入图片描述

a = 5
for i in range(4):
    Spaceship.step(a)
    Spaceship.turnLeft()
    a = a - 1
  • 1
  • 2
  • 3
  • 4
  • 5

6、
在这里插入图片描述

a = 6
for i in range(5):
    Spaceship.step(a)
    Spaceship.turnRight()
    a = a - 1
  • 1
  • 2
  • 3
  • 4
  • 5

7、

在这里插入图片描述

a = 1
for i in range(3):
    Dev.step(a)
    Dev.turnLeft()
    Dev.step(a)
    Dev.turnRight()
    a = a + 1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

8、

在这里插入图片描述

a = 2
for i in range(3):
    Dev.step(a)
    Dev.turnRight()
    Dev.step(a)
    Dev.turnLeft()
    a = a + 1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

9、
在这里插入图片描述

a = 1
for i in range(6):
    Dev.step(a)
    Dev.turnRight()
    a = a + 2
  • 1
  • 2
  • 3
  • 4
  • 5

10、
在这里插入图片描述

a = 2
for i in range(3):
    Dev.step(a)
    Dev.turnRight()
    
    Dev.step(4)
    Dev.step(-4)
    Dev.turnLeft()
    
    a = a + 2
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

11、
在这里插入图片描述

a = 1
for i in range(3):
    Dev.step(a)
    Dev.turnRight()
    Dev.step(2)
    Dev.step(-4)
    Dev.step(2)
    Dev.turnLeft()
    a = a + 1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

12、
在这里插入图片描述

a = 13
for i in range(5):
    Dev.turnLeft()
    Dev.step(a)
    a = a - 3
  • 1
  • 2
  • 3
  • 4
  • 5

13、
在这里插入图片描述

a = 3
for i in range(4):
    Spaceship.step(a)
    Spaceship.turnRight()
    Spaceship.turnRight()
    Spaceship.step(a)
    Spaceship.turnRight()
    a = a + 1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

14、
在这里插入图片描述

a = 1
for i in range(3):
    Dev.turnRight()
    Dev.step(a)
    Dev.turnLeft()
    Dev.step(a)
    a = a + 2
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

15、
在这里插入图片描述

a = 1
for i in range(4):
    Dev.step(a)
    Dev.turnRight()
    a = a * 2
  • 1
  • 2
  • 3
  • 4
  • 5

16、
在这里插入图片描述

a = 1
for i in range(4):
    Dev.step(a)
    Dev.turnLeft()
    a = a * 2 
  • 1
  • 2
  • 3
  • 4
  • 5

17、
在这里插入图片描述

a = 8
for i in range(4):
    Dev.step(a)
    Dev.turnRight()
    a = a / 2
  • 1
  • 2
  • 3
  • 4
  • 5

18、
在这里插入图片描述

a = 12
for i in range(3):
    Dev.step(a)
    Dev.turnRight()
    a = a / 2
  • 1
  • 2
  • 3
  • 4
  • 5

19、

在这里插入图片描述

a = 1
for i in range(3):
    Dev.step(2)
    Dev.turnLeft()
    Dev.step(a)
    Dev.turnRight()
    a = a * 3
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

20、
在这里插入图片描述

a = 1
for i in range(4):
    Spaceship.step(a)
    Dev.turnLeft()
    Dev.step(-2)
    Dev.step(2)
    a = a * 2
    Spaceship.turnLeft()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/643449
推荐阅读
相关标签
  

闽ICP备14008679号