To get full credit, you need to turn in your code (e.g. name.java) under code 1 and code 2 for each part.
The TAs have asked you to turn in several other files, which will greatly speed up their grading process (and was not intended to make your turn in process so painful). I think times have changed since we learned to program and everything was done on the command line (at least this was the case for me), so we did not realize how overwhelming this was going to be. While you do not have to turn this in for full credit, it is always good advice to make your graders as happy as possible. So if you can, please turn in the following files.
– An executable (this will have a .class or .jar extension, and is the compiled version of your code).
– Instead of an executable (or in addition if you want to be extra nice), you can turn in a makefile. If you do not know what a makefile is, or have never written one, don’t worry about it.
– A runfile (titled “runfile”) which contains a the command which would run your compiled code. For example:
java -jar name.jar input.txt output.txt
or whatever you want us to type in to run your code. This should be the ONLY LINE OF TEXT in this file. It does not need to be wrapped with anything else (comments, java code, etc).