Search:

Type: Posts; User: RmSc

Search: Search took 0.15 seconds.

  1. Re: Bizarre Issue with Scanner Failing to "notice" rest of file

    I try this with a file .cvs and work well... Maybe I need to see your file .cvs or you can print the line with the problem...
  2. Re: Bizarre Issue with Scanner Failing to "notice" rest of file

    For some help I need to see the line with the problem and how do your scanner work? If it is possible...
  3. Replies
    3
    Views
    1,431

    Re: Error when adding ActionListener to JButton

    >> I get an error on line 4 with the JavaLabel.

    You get an error on line 4 because you have to implement the method of the interface "ActionListener"...

    >> I also get an error in line 26 inside...
  4. Replies
    3
    Views
    1,042

    Re: Need some help with this code - Asap

    This "if (answer += i * x)" is not correct because the result of the expression is not a boolean.

    Instead of this statement you can put "answer += Math.pow(x, i);"
  5. [SOLVED] Re: Confused on what tokenizer to use and how to use them.

    In first place, we have to follow the flow of the program...

    Legend-> Class::method::statement

    I only put the important lines...

    LL1Parser::main(String[] args)::"parser = new...
Results 1 to 5 of 5