Menu

[solved] – Question 92702

Fill in the blanks in the following program so that it draws an array of 16 tiles, organized in 4 rows of 4 tiles each, with each tile being a square of side length 100 and there being 10 pixels between consecutive tiles in each row. The tiles are placed with sides vertical and horizontal.

repeat(4){
repeat(4){
repeat(4){forward(100); right(90);}
___
}
penUp(); forward(___); right(90); forward(___); right(270); penDown();
}

Expert Answer


OR


Leave a Reply

Your email address will not be published. Required fields are marked *