danghieu2004
Results
1
issues of
danghieu2004
#include #include #include using namespace std; class Doctor { private: string name; int age; string phoneNumber; bool hasAppointment; bool hasWorked; public: Doctor(string name, int age, string phoneNumber) : name(name), age(age),...