摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef struct list 5 { 6 int ID; 7 int PASSWORD; 8 struct list *next; 9 }LIST; 10 11 /*************函数声 阅读全文
posted @ 2021-12-09 16:31 吕辉 阅读(41) 评论(0) 推荐(0)