Skip to content

Instantly share code, notes, and snippets.

@d7sh90
d7sh90 / tic
Created April 24, 2016 19:46 — forked from arushi011/tic
Tic - Tac - Toe game in java
//import java.io.IOException;
import java.util.Scanner;
class playutility
{ //by default interface variables are static and final
int winner = 0, count = 0;
static int yes=1;
static Scanner scan = new Scanner(System.in);
String data[] = new String[9];
int index, flag, i, k, j;