employee.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //employee.cpp
  2. #include "employee.h"
  3. #include <iostream.h>
  4. Employee::Employee(char* n,char* a, char* c, char* s, char* z)
  5. {
  6.   strncpy(name,n,20);
  7.   name[19]='';
  8.   strncpy(addr,a,40);
  9.   addr[39]='';
  10.   strncpy(city,c,20);
  11.   city[19]='';
  12.   strncpy(state,s,20);
  13.   state[19]='';
  14.   strncpy(zip,z,10);
  15.   zip[9]='';
  16. }
  17. void Employee::ChangeName(char* n)
  18. {
  19.   strncpy(name,n,20);
  20.   name[19]='';
  21. }
  22. void Employee::Display()
  23. {
  24.   cout <<name <<endl
  25.        <<addr <<" " <<city <<endl
  26.        <<state <<" "
  27.        <<zip <<endl;
  28. }
  29.   char name[20];
  30.   char addr[40];
  31.   char city[20];
  32.   char state[20];
  33.   char zip[10];