Skip to content

Instantly share code, notes, and snippets.

@christmoore
Created June 27, 2015 20:18
Show Gist options
  • Save christmoore/126c8a313cd77460232b to your computer and use it in GitHub Desktop.
Save christmoore/126c8a313cd77460232b to your computer and use it in GitHub Desktop.
int i = 1;
while (int i <= 1001)
{
System.out.println(i);
i+=2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment