摘要:
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,... 阅读全文