Search:

Type: Posts; User: jts0541

Search: Search took 0.10 seconds.

  1. Replies
    6
    Views
    2,250

    red means error blue means critical parts ...

    red means error
    blue means critical parts

    //initialize temporary field
    String temp = "";
    //open the file
    File file = new File("maze.txt");

    Scanner input...
  2. Replies
    6
    Views
    2,250

    Re: Declaring static character array

    I get illegal start of expression and other wierd errors saying the array cannot be found, but it says them on lines that don't even have code on them???
  3. Replies
    6
    Views
    2,250

    Declaring static character array

    I can't figure out how to declare a static two dimensional array.
    I tried...

    static char [][] array = new char [numberOfRows][numberOfColumns];

    static final char [][] array = new char...
  4. Replies
    2
    Views
    1,628

    [SOLVED] Re: 2 dimensional array storing help!

    Yah i think I understand how a 2 dimensional array. But from your java array wouldn't that look like
    J
    a
    v
    a

    Take the string javaprogramming for example I need it to be like

    javaprog...
  5. Replies
    2
    Views
    1,628

    [SOLVED] 2 dimensional array storing help!

    My goal is to take the string and place each individual character in a two dimensional array. Here is what I have so far...

    The string totalMaze is:...
Results 1 to 5 of 5