2014年12月6日
摘要: //enum枚举类型#includevoid enumTest();void main(){ enumTest();//枚举类型举例 printf("\n排列问题,5球取三球,不重色\n"); enum color{red,yellow,blue,white,black}; int i,j,k,... 阅读全文
posted @ 2014-12-06 23:39 _noname 阅读(154) 评论(0) 推荐(0) 编辑
摘要: //链表的操作#include#include#define NULL 0 #define LEN sizeof(struct student)struct student{ long num; float score; struct student *next;};//结点int n;//存... 阅读全文
posted @ 2014-12-06 23:37 _noname 阅读(136) 评论(0) 推荐(0) 编辑