说明: #include #include #include struct dictionary { char english[20]; char chinese[20]; struct dictionary* next;/*指针*/ }; typedef struct dictionary dic;/*定义一个dic类型*/ dic* head, * end;/*全局变量*/ /* 函数1——菜单 */ /* 作用:打印出操作界面,让系统以菜单的方式工作 */ int Menu() { int co
<nczhangjie> 上传 | 大小:3kb