poj 1573 模拟
摘要:
水题 1 #include <iostream> 2 #include <stdio.h> 3 #include <string.h> 4 using namespace std; 5 6 int n,m; 7 8 bool out(int x,int y){if((x>=0 && x<n)&&(y>=0 && y<m))return 0;return 1;} 9 10 int main()11 {12 int start;13 bool visit[12][12];14 char c[ 阅读全文
posted @ 2012-04-06 17:02 Inpeace7 阅读(142) 评论(0) 推荐(0) 编辑