1 point
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 + ___;
}
Comments
Leave a comment