Cpp1.cpp
上传用户:hnwbjx
上传日期:2022-07-21
资源大小:497k
文件大小:1k
源码类别:

企业管理

开发平台:

Visual C++

  1. #include <iostream.h>
  2. #include <fstream.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. struct txrec
  6. { char no[6];
  7.   char name[20];
  8.   char tel[9];
  9.   char postc[7];
  10.   char addr[30];
  11. };
  12. void main()
  13. { struct txrec gzrec; int i;
  14.   char filename[20], num[5];
  15.   fstream infile;
  16.   cout << "请输入通讯录文件名:";
  17.   cin >> filename ; 
  18.   infile.open( filename, ios::in|ios::binary ); 
  19.   if ( !infile )
  20.    { cerr << "文件不能打开!" << endl;
  21.      abort(); }
  22.   infile.seekg( 0,ios::end );
  23.   long posend = infile.tellp();
  24.   infile.seekg( 0,ios::beg );
  25.   cout << "请输入职工编号:" ;
  26.   cin >> num;
  27.   do
  28.   { infile.read(( char * )&gzrec,sizeof( txrec ));
  29.    } while ( strcmp( gzrec.no,num ) !=0 && infile.tellp() != posend );
  30.   if ( strcmp( gzrec.no,num ) == 0 )
  31.    { cout << "该职工的记录找到了!" << endl;
  32.      cout << "编号:" << gzrec.no << endl; 
  33.      cout << "姓名:"<< gzrec.name << endl;
  34.      cout << "电话号码:"<< gzrec.tel << endl;
  35.      cout << "邮政编码:" << gzrec.postc << endl;
  36.      cout << "通信地址:" << gzrec.addr << endl;
  37.    }
  38.   else
  39.    { cout << "该职工的记录找不到!" << endl;    }
  40.      infile.close();
  41. }