THEORY I - CS 3500 D Spring 2003

Monday, April 7, 2003

Sample Input and Output Files for Project-Part 2

Problem Input Output
1. p1.in.txt p1.out.txt
2. p2.in.txt p2.out.txt
3. p3.in.txt p3.out.txt
4. p4.in.txt p4.out.txt

Project 2 - Java

If you would like to use Java, please observe the following.
Submission guidelines:
  1. Name your source files p#.java, where # is the problem number.
  2. We will use J2SDK 1.4.1 to compile your code. The commands used to compile and run your code will be as follows:
      javac p#.java javar p# < p#.in > p#.out
    The file p1.out will then be compared to the correct output for the problem to determine the correctness of your program. Any other output will be ignored.
  3. Please note that we are using STANDARD input/output (i.e., System.in and System.out).