Auto generate ID in C++
问题 // AnE.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include<conio.h> #include<string.h> #include<stdlib.h> #include<iostream> using namespace std; // The maximum number of patients in queue #define MAXPATIENTS 30 // define structure for patient information struct patient { char FirstName[50]; char LastName[50]; char ID[20]; }; // define class for queue class queue { public: queue (void); int RegisterPatien (patient p); int RegisterPatientAtBeginning