程序笔记   发布时间:2022-05-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了C语言通讯录管理系统课程设计大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例为大家分享了C语言通讯录管理系统课程设计,供大家参,具体内容如下

#include <stdio.h> 
#include <stdlib.h> 
#include <windows.h>  
struct Sign{ 
    char name[8]; 
    char sex[4]; 
    char birthdaY[12]; 
    char phone[11]; 
    char postcode[7]; 
    char addr[30]; 
    struct Sign *next; 
  }pe;  
  char Phonecop[4] ; 
 
//结构体  
struct Sign *p1,*p2,*head; 
file *fp; 
voID ShowMenu(){ 
  system("color 1F"); 
  printf("#################     通讯录管理系统 v1.0  ###################\n"); 
  printf("#####################################################################\n"); 
  printf("#                                  #\n"); 
  printf("#      1-----------------信息录入-------------------      #\n"); 
  printf("#                                  #\n"); 
  printf("#      2-----------------信息查询-------------------      #\n"); 
  printf("#                                  #\n"); 
  printf("#      3-----------------信息查看-------------------      #\n"); 
  printf("#                                  #\n"); 
  printf("#      4-----------------信息修改-------------------      #\n"); 
  printf("#                                  #\n"); 
  printf("#      5-----------------信息统计-------------------      #\n"); 
  printf("#                                  #\n"); 
  printf("#      6-----------------退出系统-------------------      #\n"); 
  printf("#                                  #\n"); 
  printf("#####################################################################\n"); 
  printf("#   POWER BY *************  兰州理工大学   201407      #\n"); 
  printf("#####################################################################\n"); 
   
}; 
voID headShow() 
{ 
  printf("#################     通讯录管理系统 v1.0  ###################\n"); 
  printf("---------------------------------------------------------------------\n"); 
 
}  
voID fileLoading() 
{ 
    if((fp=fopen("txl.dat","rb"))==NulL) 
  { 
    printf("文件操作错误,请检查是否有权限操作文件!"); 
    Sleep(3000); 
    exit(1); 
  } 
  p1=(struct Sign*)malloc(sizeof(struct Sign));  
  p1->next=NulL; 
  head=p1; 
  while(!feof(fp)) 
  { 
    if(fread(p1,sizeof(struct Sign),1,fp)!=1) 
      break; 
    p2=(struct Sign*)malloc(sizeof(struct Sign)); 
    p2->next=NulL; 
    p1->next=p2; 
    p1=p2; 
  } 
  fclose(fp); 
} 
voID add() 
{   
  char ch;  
  if((fp==fopen("txl.dat","ab+"))!=1) 
  { 
    printf("文件打开失败"); 
    exit(1); 
  } 
  while(1) 
  {  system("cls"); 
    printf("请输入__\n"); 
    p2=(struct Sign*)malloc(sizeof(struct Sign)); 
    p2->next=NulL;  
    printf("姓名:");scanf("%s",pe.Name); 
    printf("性别:");scanf("%s",pe.seX); 
    printf("生日:");scanf("%s",pe.birthday); 
    printf("电话号码:");scanf("%s",pe.phonE); 
    printf("邮编:");scanf("%s",pe.postcodE); 
    printf("地址:");scanf("%s",pe.addr); 
    strcpy(p1->name,pe.Name); 
    strcpy(p1->sex,pe.seX); 
    strcpy(p1->birthday,pe.birthday); 
    strcpy(p1->phone,pe.phonE); 
    strcpy(p1->postcode,pe.postcodE); 
    strcpy(p1->addr,pe.addr); 
    p1->next=p2; 
    p1=p2;     
    if(fwrite(&pe,fp)!=1) 
      printf("写入错误"); 
    printf("输入E或e来结束输入?"); 
    getchar(); 
    ch=getchar(); 
    if(ch=='e'||ch=='E') 
      break; 
 
  } 
  fclose(fp); 
} 
voID SaveChange() 
{   
  if((fp==fopen("txl.dat","w"))!=1) 
  { 
    printf("文件打开失败"); 
    exit(1); 
  } 
  p1=head; 
  while(p1->next!=NulL) 
  { 
    if(fwrite(p1,fp)!=1) 
      printf("写入错误"); 
    p1=p1->next; 
     
  }  
  fclose(fp); 
} 
voID AllShow() 
{ 
  headShow(); 
  printf("%10.8s %6.6s %10.10s %11.4s %9.7s %16.6s \n","姓名","性别","生日","电话","邮编","地址");   
  printf("---------------------------------------------------------------------\n"); 
  p1=head; 
  while(p1->next!=NulL) 
  { 
    printf("%10.8s %6.6s %10.12s %11.11s %9.7s %16.16s \n",p1->name,p1->sex,p1->birthday,p1->phone,p1->postcode,p1->addr); 
    p1=p1->next; 
     
  }  
   
} 
 
voID AllNum() 
{  int i=0;  
  headShow(); 
  printf("     共有记录条数为:  \n");  
  printf("---------------------------------------------------------------------\n"); 
  p1=head; 
    while(p1->next!=NulL) 
  { 
    i++; 
    p1=p1->next; 
     
  }  
  printf("     %d         \n",i); 
  printf("---------------------------------------------------------------------\n"); 
   
  printf("     共有联通用户为:  \n");  
  printf("---------------------------------------------------------------------\n"); 
  p1=head; 
  i=0; 
    while(p1->next!=NulL) 
  { 
    strncpy(Phonecop,3); 
    if(strcmp(Phonecop,"130")==0||strcmp(Phonecop,"131")==0||strcmp(Phonecop,"132")==0||strcmp(Phonecop,"155")==0||strcmp(Phonecop,"156")==0||strcmp(Phonecop,"185")==0||strcmp(Phonecop,"186")==0) 
      i++; 
    p1=p1->next; 
     
  }  
  printf("     %d         \n",i); 
  printf("---------------------------------------------------------------------\n"); 
  printf("     共有移动用户为:  \n");  
  printf("---------------------------------------------------------------------\n"); 
  p1=head; 
  i=0; 
    while(p1->next!=NulL) 
  { 
    strncpy(Phonecop,"134")==0||strcmp(Phonecop,"135")==0||strcmp(Phonecop,"136")==0||strcmp(Phonecop,"137")==0||strcmp(Phonecop,"138")==0||strcmp(Phonecop,"139")==0||strcmp(Phonecop,"150")==0||strcmp(Phonecop,"151")==0||strcmp(Phonecop,"152")==0||strcmp(Phonecop,"157")==0||strcmp(Phonecop,"158")==0||strcmp(Phonecop,"159")==0||strcmp(Phonecop,"187")==0||strcmp(Phonecop,"188")==0) 
      i++; 
    p1=p1->next; 
     
  }  
  printf("     %d         \n",i); 
  printf("---------------------------------------------------------------------\n"); 
    printf("     共有电信用户为:  \n");  
  printf("---------------------------------------------------------------------\n"); 
  p1=head; 
  i=0; 
    while(p1->next!=NulL) 
  { 
    strncpy(Phonecop,"180")==0||strcmp(Phonecop,"189")==0||strcmp(Phonecop,"133")==0||strcmp(Phonecop,"153")==0) 
      i++; 
    p1=p1->next; 
     
  }  
  printf("     %d         \n",i); 
  printf("---------------------------------------------------------------------\n"); 
} 
voID checkFace() 
{  int check_key;  
  printf("###########     通讯录管理系统 v1.0  ################\n"); 
  printf("############################################################\n"); 
  printf("#                             #\n"); 
  printf("#         1------按姓名查询            #\n"); 
  printf("#                             #\n"); 
  printf("#         2------按电话号码查询          #\n"); 
  printf("#                             #\n"); 
  printf("#         3------综合查询             #\n"); 
  printf("#                             #\n"); 
  printf("#         4------退出查询模块           #\n"); 
  printf("#                             #\n"); 
  printf("#                             #\n"); 
  printf("#                             #\n"); 
  printf("############################################################\n"); 
  printf("#  POWER BY *************  兰州理工大学   201407   #\n"); 
  printf("############################################################\n"); 
   
} 
voID SELElctname() 
{  system("cls");  
  headShow(); 
  printf("%10.8s %6.6s %10.10s %11.4s %9.7s %16.6s \n","地址");   
  printf("---------------------------------------------------------------------\n"); 
  p1=head; 
  char Findname[8]; 
  int i=0;  
  printf("请输入要查询的姓名:"); 
  scanf("%s",&FindName); 
  while(p1->next!=NulL) 
  { 
    if(strcmp(p1->name,FindName)==0)  
      {printf("%10.8s %6.6s %10.10s %11.14s %9.7s %16.16s \n",p1->addr); 
      i++; 
      } 
    p1=p1->next; 
     
  }  
  printf("共 %d 条\n",i); 
  system("pause");  
}  
 
voID SELElctphone() 
{  system("cls");  
  headShow(); 
  printf("%10.8s %6.6s %10.10s %11.4s %9.7s %16.6s \n","地址");   
  printf("---------------------------------------------------------------------\n"); 
  p1=head; 
  char phone[11]; 
  int i=0;  
  printf("请输入要查询的电话号码:"); 
  scanf("%s",&phonE); 
  while(p1->next!=NulL) 
  { 
    if(strcmp(p1->phone,phonE)==0)  
      {printf("%10.8s %6.6s %10.10s %11.4s %9.7s %16.6s \n",i); 
  system("pause");  
}  
voID SELElctall() 
{  system("cls");  
  headShow(); 
  printf("%10.8s %6.6s %10.10s %11.4s %9.7s %16.6s \n","地址");   
  printf("---------------------------------------------------------------------\n"); 
  p1=head; 
  char all[30]; 
  int i=0;  
  printf("请输入任意一项要查询的内容:"); 
  scanf("%s",&all); 
  while(p1->next!=NulL) 
  { 
    if(strcmp(p1->name,all)==0||strcmp(p1->sex,all)==0||strcmp(p1->birthday,all)==0||strcmp(p1->phone,all)==0||strcmp(p1->postcode,all)==0||strcmp(p1->addr,all)==0)  
      {printf("%10.8s %6.6s %10.10s %11.11s %9.7s %16.16s \n",i); 
  system("pause");  
}  
voID Change() 
{  char Changename[8];  
  int changekey; 
  system("cls"); 
  headShow(); 
  int i,y=0;        
  p1=p2=head;    
  printf("请输入你要修改的条目的姓名:"); 
  scanf("%s",&ChangeName); 
    getchar();  
  while(p1!=NulL) 
  {   
  if(strcmp(p1->name,ChangeName)==0)   
    {  printf("%10.8s %6.6s %10.10s %11.11s %9.7s %16.16s \n",p1->addr); 
      printf("您要修改的是这条记录吗?1---是|2---否\n"); 
      scanf("%d",&i); 
      if(i==1) 
      { y=1; 
      printf("你要修改的通讯录为:\n"); 
      printf("%10.8s %6.6s %10.10s %11.11s %9.7s %16.16s \n",p1->addr); 
      printf("请选择您的操作   1---删除|2---修改\n"); 
      scanf("%d",&changekey);  
      if(changekey==1)  
       { 
        if(p1==head)      
         {head=p1->next;  
         free(p1); 
         } 
         else 
         { 
        p2->next=p1->next; 
        free(p1);   
        SaveChange();   
         
       } 
         
    }  
    else if(changekey==2) 
    { 
      printf("姓名:");scanf("%s",p1->Name); 
      printf("性别:");scanf("%s",p1->seX); 
      printf("生日:");scanf("%s",p1->birthday); 
      printf("电话:");scanf("%s",p1->phonE); 
      printf("邮编:");scanf("%s",p1->postcodE); 
      printf("地址:");scanf("%s",p1->addr);  
      SaveChange(); 
      printf("\n OK!  \n"); 
    }   
      }       
     
    } 
  else if(strcmp(p1->name,ChangeName)&&(p1->next)==NulL) 
    { 
      i=0;        
     
    } 
    p2=p1;    
    p1=p1->next;  
  } 
 
   if(y==0)   
  { 
    printf("对不起,没有找到要修改的通讯名单,请检查你要修改的姓名是否正确\n"); 
  } 
   
   
  system("pause"); 
} 
voID Exirshow() 
{ 
  system("color 0E"); 
  printf("###########     通讯录管理系统 v1.0  ################\n"); 
  printf("############################################################\n"); 
  printf("#                             #\n"); 
  printf("#                             #\n"); 
  printf("#                             #\n"); 
  printf("#                             #\n"); 
  printf("#                             #\n"); 
  printf("#           谢谢使用!              #\n"); 
  printf("#                             #\n"); 
  printf("#                             #\n"); 
  printf("#                             #\n"); 
  printf("#                             #\n"); 
  printf("#                             #\n"); 
  printf("############################################################\n"); 
  printf("#  POWER BY *************  兰州理工大学   201407   #\n"); 
  printf("############################################################\n"); 
   
} 
voID ErrorShow() 
{  int errortime=5; 
  system("color 0E"); 
  for(errortime=5;errortime>0;errortime--) 
    {printf("\r输入错误!请仔细检查!将在%d秒后返回",errortimE); 
     Sleep(1000); 
    } 
   
} 
int main() 
{  int key; 
  int Ex_key;  
  int check_key; 
  char a[10]; 
  if((fp=fopen("txl.dat","ab"))==NulL) 
  { 
    printf("文件操作错误,请检查是否有权限操作文件!"); 
    Sleep(3000); 
    exit(1); 
  } 
  fclose(fp);  
  fileLoading(); 
  while(1){ 
  ShowMenu(); 
  gets(a); 
  key=atoi(a); 
  if(key==1) 
    {system("cls"); 
    add(); 
    } 
  else if(key==2) 
    {  system("cls"); 
       
      system("color 0E"); 
    while(1) 
       { 
      system("color 0E");  
      checkFace(); 
      printf("请输入你的选择:\n"); 
      gets(a); 
      check_key=atoi(a); 
      if(check_key==1) 
        SELElctname() 
      ; 
      else if(check_key==2) 
        SELElctphone() 
      ; 
      else if(check_key==3) 
        SELElctall() 
      ; 
      else if(check_key==4) 
     
      break; 
      else 
      ErrorShow(); 
      system("cls"); 
      system("color 1F");  
      getchar(); 
       
    }   
     
     
    } 
   
  else if(key==3)   //2013级 耿。。 
  {  system("color 0E");  
    system("cls");  
    AllShow(); 
    system("pause"); 
  } 
  else if(key==4) 
    { 
      system("color 0A");  
      Change(); 
     
     
    }  
  else if(key==5) 
    { 
    system("color 5F");  
    system("cls");  
    AllNum(); 
    system("pause"); 
     } 
  else if(key==6)  
    { 
    system("cls"); 
    Exirshow();  
    Sleep(1000); 
    exit(0); 
    } 
     
  else  
   
    ErrorShow(); 
    system("cls"); 
    system("color 1F");  
    getchar(); 
  } 
   
 
} 

比较简单就是用到了链表和文件操作,其中统计联通和移动人数的那里其实只用一个循环就可以。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

您可能感兴趣的文章:

  • C语言超市管理系统设计
  • C语言图书借阅系统源码
  • C语言通讯录管理系统完整版
  • C语言实现通讯录系统
  • C语言链表实现图书管理系统
  • C语言银行储蓄系统源码
  • C语言银行系统课程设计
  • C语言职工信息管理系统源码
  • C语言实现歌曲信息管理系统
  • C语言商品销售系统源码分享

大佬总结

以上是大佬教程为你收集整理的C语言通讯录管理系统课程设计全部内容,希望文章能够帮你解决C语言通讯录管理系统课程设计所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。