回答編集履歴

1

Update

2022/06/04 11:30

投稿

melian
melian

スコア19825

test CHANGED
@@ -1,5 +1,6 @@
1
1
  簡便な方法としては以下になります。
2
2
  ```python
3
3
  #pyxel.circ(a, a, 10, 0)
4
+ a %= 200
4
- pyxel.circ(a%200, a%200, 10, 0)
5
+ pyxel.circ(a, a, 10, 0)
5
6
  ```