Search:

Type: Posts; User: pbrockway2

Search: Search took 0.09 seconds.

  1. Replies
    5
    Views
    1,312

    [SOLVED] Re: tic tac toe java program error

    It's better, I think, for the thread to remain for the benefit of others.
  2. Replies
    5
    Views
    1,312

    [SOLVED] Re: tic tac toe java program error

    Basically what I'm suggesting is that you replace the whole do loop with a single assignment to the winner variable:



    public static boolean checkWin()
    {
    boolean winner = ((grid[0][0] ==...
  3. Replies
    5
    Views
    1,312

    [SOLVED] Re: tic tac toe java program error

    The program doesn't actually end. So evidently it gets into a never ending loop (with no output).



    public static boolean checkWin()
    {
    boolean winner = false;
    do
    ...
Results 1 to 3 of 3