All pastes #344626 Raw Edit

Stuff

public text v1 · immutable
#344626 ·published 2007-02-07 21:51 UTC
rendered paste body
    public void printPuzzle()
    {
        for (int x = 0; x < GRIDSIZE; x++)
        {
            String container = "";
                for (int y = 0; y < GRIDSIZE; y++) 
                {
                    container = ("| " + grid[x][y] + " |");
                    System.out.println(" " + "---");
                    System.out.println(container);
                    System.out.println(" " + "___");
                }
                
                    System.out.println("   ");

        }
    }