poj 3075 Tic-Tac-Toe 五子棋模擬

//poj 3075 //sep9 #include <iostream> #include <algorithm> using namespace std; int way[8][3]={ {0,1,2}, {3,4,5}, {6,7,8}, {0,3,6}, {1,4,7}, {2,5,8}, {0,4,8}, {2,4,6} }; char s[16]; bool
相關文章
相關標籤/搜索