Skip to content

Instantly share code, notes, and snippets.

@madhephaestus
Forked from christmoore/dowhileexample.groovy
Created February 8, 2016 05:33
Show Gist options
  • Save madhephaestus/3dbd694150d5e68d2a46 to your computer and use it in GitHub Desktop.
Save madhephaestus/3dbd694150d5e68d2a46 to your computer and use it in GitHub Desktop.
int i = 1;
do
{
System.out.println(i);
i+=2;
} while (i <= 1001);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment