20 likes | 143 Views
Exercise: Simplified Tic Tac Toe. 1. Set JPanel's preferred size to 300 x 300 Use an array of JButtons Build buttons with empty text (i.e. ”” ) in them Set the button ’ s preferred size to 100,100 Change button ’ s font using setFont(new Font( “ Arial ” , 0, 48))
E N D
Exercise:SimplifiedTic Tac Toe 1 Set JPanel's preferred size to 300 x 300 Use an array of JButtons Build buttons with empty text (i.e. ””) in them Set the button’s preferred size to 100,100 Change button’s font using setFont(new Font(“Arial”, 0, 48)) User’s button click sets text to “X” Computer chooses first empty button for its “O” (dumb computer;) Computer always allows user to move first (dumb computer;) Ignore end of game (computer is sore loser;)