Skip to content

Instantly share code, notes, and snippets.

@chestergrant
Created July 1, 2012 07:13
Show Gist options
  • Save chestergrant/3027279 to your computer and use it in GitHub Desktop.
Save chestergrant/3027279 to your computer and use it in GitHub Desktop.
Counts from one to ten. Part of "1000 programming exercise by Chess"
public class TenCount {
public static void main(String[] args) {
for(int i=1; i<=10; i++){
System.out.println(i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment