Skip to content

Instantly share code, notes, and snippets.

@christmoore
Created June 27, 2015 20:19
Show Gist options
  • Save christmoore/4115a1e6fcee1738d210 to your computer and use it in GitHub Desktop.
Save christmoore/4115a1e6fcee1738d210 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