You are missing a closing parenthesis for System.out.println on line 14. Actually the compiler message clearly tells what you were missing or the reason for compilation failure.
You can provide the complete path to the Java source file while you are compiling. That way you need not navigate to the directory.
Edit: Sorry, This post got caught in the traffic and hence arrived late.
Zach Williams wrote:Still need help simplifying the process though
How exactly do you want to simplify the process? Or do you just mean that you don't understand exactly what you are doing?
If you're not so familiar with the Windows command prompt, then maybe you should look for a basic tutorial about the command prompt. One important concept is that of the "current directory". When you run commands, they normally look at files in the current directory. The current directory is indicated by the prompt, as you can see. You change the current directory with the "cd" command.
When you compile a Java source file by typing javac MyProgam.java, then the Java compiler will look for the source file MyProgram.java in the current directory. If the file is not in the current directory, Javac will ofcourse complain that it can't find the file.