赞
踩
项目名:C语言实现通讯录功能
通讯录包含的内容:姓名、性别、 电话、最大存储量50人·
实现功能:
1、添加联系人
2、按姓名删除联系人
3、按姓名修改联系人信息
4、查找联系人,电话或姓名,支持模糊查找。
5、显示所有联系人
参考代码:
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <getch.h> typedef struct Txl { char name[20]; // 姓名 char sex; // 性别 char tel[12]; // 电话 }Txl; int count = 0 ; // 有效联系人数量 Txl txl[100]; void anykey_continue(void) { stdin->_IO_read_ptr = stdin->_IO_read_end; puts("任意键继续..."); getch(); } void show_msg(const char* msg,float sec) { printf("%s",msg); fflush(stdout); usleep(sec*1000000); } void add(void) { if(count >= 100) { puts("系统正在升级,请等待...."); return; } int i = 0; while(txl[i].sex) i++; printf("请输入姓名 性别 电话:")
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。