Advertisement
calcpage

APCS2012 C1X3 TicTacToeBoardPrinter.java

Sep 16th, 2012
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.36 KB | None | 0 0
  1. public class TicTacToeBoardPrinter
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         System.out.println("+---+---+---+");
  6.         System.out.println("|   |   |   |");
  7.         System.out.println("+---+---+---+");
  8.         System.out.println("|   |   |   |");
  9.         System.out.println("+---+---+---+");
  10.         System.out.println("|   |   |   |");
  11.         System.out.println("+---+---+---+");
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement