Search:

Type: Posts; User: helloworld922

Search: Search took 0.15 seconds.

  1. Re: Need help with understanding a homework assignment, not asking for answers

    In my example I'm explaining how command-line arguments work. The assignment indicates that you're expected to get the file names from the command-line. The Java code I provided is just an example to...
  2. Re: Need help with understanding a homework assignment, not asking for answers

    You're having the same issue as before:


    foo[i][0];

    This doesn't do anything. The compiler is telling you that. Either remove the line or modify it to do something (either assign to it or use...
  3. Re: Need help with understanding a homework assignment, not asking for answers

    You said it's not compiling. Can you post the compiler output so we can see what the errors are?
  4. Re: Need help with understanding a homework assignment, not asking for answers

    So one thing I'm noticing right away is you code will not compile/run (your code isn't inside of a method). I am a big fan of "incremental development", i.e. build and test often. This lets you test...
  5. Re: Need help with understanding a homework assignment, not asking for answers

    Start with figuring out what it is the program is suppose to do. Start big and work your way down.

    To help you get started:

    1. You need at least a class called Parser. This class should have at...
Results 1 to 5 of 5