Menu

[solved] – Question 93059

Fill in the blanks in the following code which is intended for drawing 5 circles of radius 50 pixels centered at points (100,100), (150,100), (200,100), (250,100), (300,100).

initCanvas();
double x=100;
repeat(5){
Circle c(x,___,___);
c.imprint();
x = x + ___;
}

Expert Answer


OR


Leave a Reply

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