Initial Commit

This commit is contained in:
2012-01-22 16:14:32 -05:00
commit f5e306f67f
155 changed files with 5097 additions and 0 deletions

17
Java/Count.java Normal file
View File

@@ -0,0 +1,17 @@
/*
* this class will demonstrate how to use a for loop
* @author ricky.barrette
*/
public class Count {
/*
* this is the main method of this class
*
* @author ricky.barrette
*/
public static void main(String[] args) {
for(int index = 1000; index > 4; index--) {
System.out.println("index = "+ index);
}
}
}