How to make lines for a tic tac toe board?

I know this is just insanely amateur, but my computer programming class wrote an unbeatable tic tac toe program for its final project, and it works fine.

My question is how to make the lines for the board.

The code's too long to post, but can anyone help?

Last edited on
If it isn't graphically you can use this:
1|4|7
-+-+-
2|5|8
-+-+-
3|6|9

I know it looks lame, but there aren't much possibilities (except if your using graphics).
Last edited on
like this?
╔═══╦═══╦═══╗
║ x ║ o ║ o ║
╠═══╬═══╬═══╣
║ x ║ o ║ o ║
╠═══╬═══╬═══╣
║ x ║ o ║ o ║
╚═══╩═══╩═══╝
Last edited on
@blackcoder41:

You realize that 'O' is cheating right?
whatever.. it's just a design..
Topic archived. No new replies allowed.