摘要:
模拟题View Code 1 #include <cstdio> 2 #include <cstring> 3 4 int m, n; 5 char map[76][76]; 6 7 void swap(int &x, int &y) 8 { 9 int tmp = x; 10 x = y, y = tmp; 11 } 12 13 void print() 14 { 15 for (int i=0; i<m; i++) 16 { 17 if(!i) printf("+"); 18 printf... 阅读全文
posted @ 2012-11-24 20:15
Hacb
阅读(160)
评论(0)
推荐(0)
浙公网安备 33010602011771号