deluser.c
上传用户:tamljx
上传日期:2021-06-04
资源大小:60k
文件大小:2k
源码类别:

家庭/个人应用

开发平台:

C/C++

  1. /*  deluser.c 删除用户信息                  */
  2. #include "stdio.h"
  3. void DelUser()
  4.  {
  5.     int i,j,k;
  6.     long delnum;
  7.     user TmpS;
  8.     user s[SIZE];/*SIZE,在user.h头文件中定义的常量,值为100  */
  9.     int recNumber;
  10.     char DataFile[40] = "yonghu",next;
  11.     FILE *fp;/*====fp指针指向存储数据的文件名====*/
  12. begin:
  13.     fp=fopen(DataFile,"rb");
  14.     if (fp == NULL)
  15.     {
  16.         printf("nOpen file %s fail!End with any keyn",DataFile);
  17.         perror("Open file fail");
  18.         getch();
  19.         exit(1);
  20.     }
  21.     printf("please input the user'seatnum which you will delete:");
  22.     scanf("%ld",&delnum);
  23.     printf("the user you will delete is:%ldn",delnum);
  24.    recNumber=0;
  25.     while((fread(&TmpS,sizeof(user),1,fp)) != (int)NULL)
  26.     {
  27.         if(TmpS.Number!=delnum)
  28.             {
  29.             s[recNumber].Number = TmpS.Number;
  30.             strcpy(s[recNumber].Name, TmpS.Name);
  31.             strcpy(s[recNumber].ps,TmpS.ps);
  32.             s[recNumber].power = TmpS.power;
  33.             recNumber++;
  34.             }
  35.     }
  36.     printf("end shuzu while");
  37.     fclose(fp);
  38.     /*将删除后的结构体数组记录写入文件=*/
  39.         fp=fopen(DataFile,"wb+");
  40.         if (fp == NULL)
  41.         {
  42.             printf("nSet up file %sfail !end with anykey.n",DataFile);
  43.             perror("Set up fail");
  44.             getch();
  45.             exit(1);
  46.         }
  47.        for(i=0; i<recNumber; i++)
  48.         {
  49.             if(fwrite(&s[i],sizeof(user),1,fp)!=1)
  50.             {
  51.                 printf("nWrite file %s fail!end with anykey.n",DataFile);
  52.                 perror("Write file fail!");
  53.                     getch();
  54.                     exit(1);
  55.             }
  56.         }
  57.         fclose(fp);
  58.      /*显示删除家庭成员信息后的文件*/
  59.     fp=fopen(DataFile,"rb");
  60.     if (fp == NULL)
  61.     {
  62.         printf("nOpen file%sfail!End with any key n",DataFile);
  63.         perror("Open file fail");
  64.         getch();
  65.         exit(1);
  66.     }
  67.     printf("the file after delete is:n");
  68.     printf("nNumber ttNametpstpowern");
  69.     while(fread(&TmpS,sizeof(user),1,fp) != (int)NULL)
  70.     {
  71.         if(TmpS.Number!=0)
  72.         printf("n%ldt        %st   %st  %dn",TmpS.Number,TmpS.Name,TmpS.ps,TmpS.power);
  73.     }
  74.     fclose(fp);
  75.     /*询问是否继续删除*/
  76.     printf("nGo on ?(y/n)");
  77.     next=getche();
  78.     putchar('n');
  79.     if ( next =='y' || next =='Y') goto begin;
  80.  }