摘要: #include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct Note { char a; struct Note* next; } Note,*list;a void CF(list L) { Note *s; cha 阅读全文
posted @ 2017-10-13 19:28 zcb_bai 阅读(703) 评论(0) 推荐(0) 编辑
摘要: 加油 阅读全文
posted @ 2017-10-13 13:53 zcb_bai 阅读(475) 评论(0) 推荐(0) 编辑
摘要: #include void t(int x) { int a[30]; int i=0,rem; while(x!=0) { rem=x%2; x=x/2; a[i]=rem; i++; } while(i>0) printf... 阅读全文
posted @ 2017-10-13 13:48 zcb_bai 阅读(221) 评论(0) 推荐(0) 编辑