Re: [gcj] how to test input file with your program

2010-04-08 Thread Damon Doucet
By the way, using i/ofstream requires you to put #include with the rest of your include statements. On Thu, Apr 8, 2010 at 3:21 PM, Damon Doucet wrote: > You could also learn how to do file handling in your own programming > language. (There are many tutorials online) > > For e

Re: [gcj] how to test input file with your program

2010-04-08 Thread Damon Doucet
You could also learn how to do file handling in your own programming language. (There are many tutorials online) For example, in C++ you could do ifstream input("test.in"); then instead of using cin >> value, you would do input >> value. Likewise, for output: ifstream output("test.out"); outpu