Skip to content

Instantly share code, notes, and snippets.

@rcoh
Created July 20, 2012 21:44
Show Gist options
  • Save rcoh/3153445 to your computer and use it in GitHub Desktop.
Save rcoh/3153445 to your computer and use it in GitHub Desktop.
count java style
var x = 1
var num = 0
while(x < 1000) {
if(x % 10 == 0) { num += 1 }
x += 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment