摘要: ```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 加州风尘 阅读(236) 评论(0) 推荐(0)