2013年5月8日
摘要: 1 #include <stdio.h> 2 3 4 5 6 struct MyPoint 7 { 8 int x; 9 int y; 10 }; 11 12 struct MyPoint p[(1<<13)+1]; 13 14 void fold(int n) 15 { 16 int i,c; 17 if (n==0) 18 { 19 p[0].x=0; 20 p[0].y=0; 21 p[1].x=1; 22 p[1].y=0; 23 re... 阅读全文
posted @ 2013-05-08 12:42 宇睿 阅读(328) 评论(1) 推荐(0) 编辑