cd c:\
mkdir science
cd science
dir
dir
javac PseudoRandom.javaIf you get the following message 'javac.exe' is not recognized as an internal or external command you either did not install the JDK or the JDK's location is not set in your environment. Install the JDK following step 1 above. If you installed the JDK specify the exact location of the javac.exe java compiler program. For example the javac.exe can be found under "C:\Program Files\Java\jdk1.6.0_01\bin\javac" on my computer.
"C:\Program Files\Java\jdk1.6.0_01\bin\javac" PseudoRandom.javaVerify the Java program PseudoRandom.java was correctly compiled. At least one new file PseudoRandom.class should have been created by the Java compiler
dir
java PseudoRandom
javac *.java