首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴刘京佂的代码贴全部
/*通讯录管理*/
 #include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define M 50//记录最大值
int Menu_select(); 
typedef struct ElemType{
char name[20];
char tel[15];
char email[20];
char ad[15];
}ElemType;
......................
阅读全部 | 2015年4月9日 15:54
/*通讯录管理*/
 #include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define M 50//记录最大值
int Menu_select(); 
typedef struct ElemType{
char name[20];
char tel[15];
char email[20];
char ad[15];
}ElemType;
......................
阅读全部 | 2015年4月9日 15:49
1
刘京佂