Search:

Type: Posts; User: Michael3

Search: Search took 0.15 seconds.

  1. Replies
    8
    Views
    1,018

    Re: Need help please.

    Thanks for your help, Norm. I finally got it.


    public class TicTacToeGame {

    static int [][] gameboard;
    static final int EMPTY = 0;
    static final int NOUGHT = -1;
    static...
  2. Replies
    8
    Views
    1,018

    Re: Need help please.

    Okay, this is what my output looks like:


    run:
    | |
    -------

    |
    -------
  3. Replies
    8
    Views
    1,018

    Re: Need help please.

    Line 19 is the one that reads



    int gameboard[][]= new int[row][col];


    The error message I'm getting is
  4. Replies
    8
    Views
    1,018

    Need help please.

    So here's what I've got:




    public class TicTacToeGame {

    static int [][] gameboard;
    static final int EMPTY = 0;
    static final int NOUGHT = -1;
Results 1 to 4 of 4