摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> struct stud_node{ int num; char name[20]; int score; struct stud_node *next; }; struct stud 阅读全文
posted @ 2021-09-25 21:14 就是想学习 阅读(112) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> struct card{ int suit; int face; }; void deal(struct card *wdeck){ int i , m, t; static int t 阅读全文
posted @ 2021-09-25 16:00 就是想学习 阅读(58) 评论(0) 推荐(0) 编辑