justEnoughComments

PHOTO EMBED

Wed Oct 26 2022 00:18:06 GMT+0000 (Coordinated Universal Time)

Saved by @DonYall #java

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