谁有关于通讯录的c语言程序???

如题所述

第1个回答  2012-05-28
#include <stdio.h>
#define NUM 4
struct students
{
char name[20];
char phone[20];
};
main()
{
struct students people[NUM];
int i;
for(i=0;i<NUM;i++)
{
printf("输入姓名:");
scanf("%s",people[i].name);
printf("输入电话号码:");
scanf("%s",people[i].phone);
}
printf("姓名\t\t电话号码\n");
for(i=0;i<NUM;i++)
printf("%s\t\t%s\n",people[i].name,people[i].phone);
}
如果解决了你问题请采纳!

我现在需要一个通讯录的c语言源代码,大家可以帮帮我吗???
\/***通讯录应用程序简介 1、设一个通信录由以下几项数据信息构成:数据项 类型 姓名 字符串 地址 字符串 邮政编码 字符串 电话号码 字符串 2. 实现功能:1.存取、2.显示、3.删除记录、4.查询记录等功能。2、要求:界面友好,易于操作 \/ include<stdio.h> include<string.h> in...

用C语言或C++做个通讯录管理系统
\/\/简单的学生通讯录管理系统#include<stdio.h>#include<stdlib.h>#include<string.h>#include<conio.h>struct record{char name[20]; \/\/姓名char phone[12]; \/\/电话char adress[50]; \/\/地址char postcode[8]; \/\/邮政编码char e_mail[20]; \/\/电子邮件。}student[100]; \/\/假设最大数为100...

求一个通讯录管理系统 C语言编写的
printf("\\t\\t 欢迎使用通讯录管理系统 \\n\\n"); printf("\\n\\n\\n\\n\\n\\n\\n\\t\\t\\t\\t数据加载成功\\n\\n\\n\\n\\n\\n\\n\\t\\t\\t\\t"); system("pause"); system("cls");}void savedata() \/\/保存数据{ FILE *fp; STUDENT *p; if (first==NULL ) { printf("没有记录\\n"); pause(); \/\/...

用C语言做一个班级通讯录,要求有学号、姓名、性别、手机号码、QQ号...
include<string.h> struct student { char num[20];\/\/学号 char name[20];\/\/用户姓名 char phone[20];\/\/电话号码 char addr[100];\/\/通讯地址 struct student *next;};void insert(student* head)\/\/添加一条记录 { student *p=head;student *newStud=(student*)malloc(sizeof(student));pri...

求C语言程序设计手机通讯录代码,急,
printf("通讯录是空的!\\n");return;} for(i=0;i<Count;i++)if(strcmp(name,friends[i].name)==0){ flag=1;break;} if(flag){ printf("姓名:%s\\t",friends[i].name);printf("年龄:%d\\t",friends[i].age);printf("电话:%s\\n",friends[i].telephone);} else printf("无此...

C语言编写通讯录,要求可以查找、显示、删除、添加!在线等!急!_百度...
int n){char ch[20];int i = 0;printf("请选择查询的联系人姓名:");scanf("%s",ch);for (; i < n; i++){if (strcmp(ch, (*(somebody+i)).name)==0){printf("%s的号码是%d.\\n",ch,(*(somebody+i)).tel);}}}int Add(address_list *somebody){int i,k;printf("...

求大神用c语言帮忙编个手机通讯录管理!!
define BUFLEN 80 \/\/缓存区字符不超过80 define LEN 20 \/\/返回去字符不超过20 define N 200 struct record { char code[LEN+1];char name[LEN+1];int age;char sex[3];char time[LEN+1];char add[30];char tel[LEN+1];char mail[30];}stu[N];int k=1,n,m;void readfile...

求用C语言编写手机通讯录系统的程序
void Input() \/*向.通讯录中输入一个人的信息*\/ { s=(linklist)malloc(sizeof(listnode));printf("\\n\\n\\t请输入该用户的信息:");printf("姓名:");scanf("%s",&s->name);printf("电话号码:");scanf("%s",&s->tel_no);printf("单键拨号:");scanf("%s",&s->sim_no);printf(...

C语言程序设计,通讯录管理系统
\/*【用C语言编写具有数据插入、修改、删除、显示和查询功能的电话薄管理程序】1、数据包括:人名、工作单位、电话号码和E-mail地址。2、可对记录中的姓名和电话号码进行修改。3、可增加或删除记录。4、可显示所有保存的记录。5、可按人名或电话号码进行查询。另:采用结构体数组和文件系统实现。结构体...

求c语言编程制作一个班级通讯录,用结构定义通讯录,包括姓名,学号,手机...
void prt(){ for(i=5;i<8;i++) printf("%c",'*');printf("\\t");} main(){ for(i=5;i<=8;i++) prt();} \/ include include<stdio.h> include<conio.h> include <stdlib.h> define MAX 50 void input();void sort();void display();void insert();void del();vo...

相似回答
大家正在搜