这是一个作业,所以我更喜欢解释而不是直接的代码。任务是像画一样递归地画圆圈。
不过,我想不出怎么画它。海龟类用来画圆圈。到目前为止,这就是我所做的
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(le