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

View File

@@ -0,0 +1,16 @@
/*
* This class will display all numbers from 1000 to 5 inclusive displays in
* decreasing order
*/
class ThousandToFive{
/*
* Main method. everything starts here
*/
public static void main(String[] args){
for (int i = 1000; i > 4; i--){
System.out.println(i);
} //end for loop
} //end main method
} //end class