Skip to content

Instantly share code, notes, and snippets.

@International
Created November 25, 2012 12:46
Show Gist options
  • Save International/4143355 to your computer and use it in GitHub Desktop.
Save International/4143355 to your computer and use it in GitHub Desktop.
java sample iteration
public class SampleIteration {
public static void main(String[] args) {
for(int i = 0;i < 5;i++) {
System.out.println("Hello world");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment