摘要: #include<stdio.h> #include<stdlib.h> #define MAXSIZE 7 //定义结构体 struct Stack { char world[MAXSIZE]; int top; }; //定义栈 struct temp { struct Stack s; }; 阅读全文
posted @ 2024-10-13 20:55 呓语-MSHK 阅读(36) 评论(0) 推荐(0)