摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 #define CHEAKED 100 5 #define UNEXPLORE 1 6 #define EXPLORE -1 7 #define WIN 1 8 #define NOTWIN -1 9 #define TEST 1 10 11 int map[100][100]; 12 int test_flag = 0; 13 14 void test(int n) 15 { 16 int i, j; 17 for(i = 1;i <= n;i++) { 18 for( 阅读全文
posted @ 2011-03-30 14:54 Moupeng.Yang 阅读(498) 评论(3) 推荐(1) 编辑