JAVA EXAMPLE cis-lclient01:~/2011/aug30>pwd /home/TU/stafford/2011/aug30 cis-lclient01:~/2011/aug30>ls cis-lclient01:~/2011/aug30>pico intover.java (try nano if pico isn't there) import java.lang.System; public class intover { public static void main(String[] args) { int i, j; j = 1; for (i = 1; i <= 10; i++) { j = j * 10; System.out.println(j); } } } ^X Save modified buffer (ANSWERING "No" WILL DESTROY CHANGES) ? Y File Name to write : intover.java cis-lclient01:~/2011/aug30>ls -l total 4 -rw------- 1 stafford domain users 191 May 17 14:16 intover.java cis-lclient01:~/2011/aug30>javac intover.java cis-lclient01:~/2011/aug30>ls -l total 8 -rw------- 1 stafford domain users 451 May 17 14:18 intover.class -rw------- 1 stafford domain users 191 May 17 14:16 intover.java cis-lclient01:~/2011/aug30>java intover 10 100 1000 10000 100000 1000000 10000000 100000000 1000000000 1410065408 cis-lclient01:~/2011/aug30>