// Dartmouth CS 2, Winter 2009, Chris Bailey-Kellogg // Notes 9 | Sketch 2 int x = 0; // initial value while (x <= 100) { // keep going as long as this is true ellipse(x,50,10,10); // do something for this iteration x = x+25; // update for next iteration }