// While loop to repeatedly call 'something' based on its previous output
int i = 0;
while (i < 10) {
  if (something) {
    i++;
  } else {
    i += 2;
  }
}