随笔分类 -  搜索

摘要:View Code 1 #include<iostream> 2 #include<cstring> 3 using namespace std; 4 5 char map[14][7]; 6 bool isw[14][7]; 7 bool f; 8 char newc[3]; 9 int m; 10 int dir[8][8]={ 11 {0,-1},{0,1},{-1,-1},{1,1}, 12 {-1,0},{1,0},{-1,1},{1,-1} 13 }; 14 15 void addnew() 16 { 17 ... 阅读全文
posted @ 2012-04-02 19:58 知行执行 阅读(8237) 评论(0) 推荐(0)