2016年10月5日

[收藏]C++简单五子棋

摘要: 1 #include<iostream> 2 #include<iomanip> 3 using namespace std; 4 5 const int X = 21; //棋盘行数 6 const int Y = 21; //棋盘列数 7 char p[X][Y]; //定义棋盘 8 int m 阅读全文

posted @ 2016-10-05 10:27 IT小新手 阅读(1351) 评论(0) 推荐(0) 编辑

导航