摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<conio.h> 4 #include<time.h> 5 struct point 6 { 7 int row; 8 int col; 9 }; 10 struct snake 11 { 12 struct point body[100]; 13 int length; 14 }; 15 struct food 16 { 17 struct point f; 18 }; 19 void main() 20 { 21 int i,... 阅读全文
posted @ 2011-10-20 19:21 rui_gao 阅读(178) 评论(0) 推荐(0) 编辑