摘要: 1 /*通讯录排序*/ 2 #include 3 struct birthday { 4 int year,mooth,day; 5 }; 6 struct student { 7 int tel; 8 char name[20]; 9 struct birthday birth; 10 11 }; 12 13 int main(void) 14 {struct stude... 阅读全文
posted @ 2019-06-25 18:19 尹文萃 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 struct birthday { 3 int year,mooth,day; 4 }; 5 struct student { 6 int tel; 7 char name[20]; 8 struct birthday birth; 9 10 }; 11 12 int main(void) 13 {struct student a[20]; 14... 阅读全文
posted @ 2019-06-25 18:15 尹文萃 阅读(98) 评论(0) 推荐(0) 编辑