Search:

Type: Posts; User: Cornix

Search: Search took 0.12 seconds.

  1. Replies
    5
    Views
    823

    [SOLVED] Re: cannoot find symbol

    Look at my correction of your code, you might notice that the line:

    results += queue[i].arch;
    tries to use a variable i which has not been defined in the same scope.
  2. Replies
    5
    Views
    823

    [SOLVED] Re: cannoot find symbol

    The error message is pretty clear, the variable "i" is never defined when you try to use it. Just look at your code very closely, and you will see that i is not visible everywhere where it is used....
Results 1 to 2 of 2