构造函数、析构函数
// Employee.cpp : Defines the entry point for the console application.//
#include "stdafx.h"#include <string.h> #include <iostream.h> class Employee&nb...
1 #include <string.h>
2 #include <iostream>
3
4 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
5 using namespace std;
6
7 c...