Hi, i am trying to make a java tic tac toe game and am completely stuck. Totaly stuck even, i have the idea of how it should be done but i dont know how the code should be. i have this code which is very very basic and doesnt do much:

Code:
public class tictactoe
 {

public static void main(String args[])
{
System.out.println("   A     B     C  ");
System.out.println("      |     |     ");
System.out.println("1     |     |     ");
System.out.println(" _____|_____|_____");
System.out.println("      |     |     ");
System.out.println("2     |     |     ");
System.out.println(" _____|_____|_____");
System.out.println("      |     |     ");
System.out.println("3     |     |     ");
System.out.println("      |     |     ");
}
}
please can you help
thanks very much