这是一个作业,所以我更喜欢解释而不是直接代码。任务是像图片一样递归画圆
但是我无法确定绘制它的模式。乌龟类用于绘制圆圈。这是我到目前为止所管理的
private void draw(int level, double size){
if(level < 0) return;
turtle.setPenDown(true);
turtle.drawOval(size);
//Here I think there needs to be code to move to the positions of the other circles?
draw(level-1,size/2);
}
但当然它现在只画了这个:
编辑:
也许一些代码可以提供帮助,这对我来说并不好。