Computer Science, asked by pradeep7251, 9 months ago

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 + ___;

}


Answers

Answered by abuzar65
0

Answer:

34,23,21,93 gonna get

Similar questions