摘要: ```c #include #include #include struct AGE { int year; int month; int day; }; struct Student { char *name; int num; struct AGE birthday; float score; }; int main() { ... 阅读全文
posted @ 2019-05-29 21:19 加州水果 阅读(212) 评论(0) 推荐(0) 编辑