BirdError】的更多相关文章

//#include<curses.h> #include<stdlib.h> #include<signal.h> #include<time.h> #define CHAR_BIRD '0'//表示bird #define CHAR_STONE '*'//表示背景的柱子 #define CHRR_BLANK ' ' /* **链表表示柱子 */ typedef struct node { int x,y; struct node *next; }node…