// tic tac toe display board #include #include using namespace std; int main() { cout << " | | " << endl; cout << "-----" << endl; cout << " | | " << endl; cout << "-----" << endl; cout << " | | " << endl; system("pause"); return 0; }// end of main