摘要:
1 #include "stdafx.h" 2 #include <string.h> 3 #include <stdlib.h> 4 #include <iostream.h> 5 6 class MyInt 7 { 8 private: 9 int m_nYear;10 int m_nMonth;11 int m_nDay;12 public:13 14 MyInt(int nYear = 0, int nMonth = 0, int nDay = 0)15 {16 m_nYear = nYear;17 m_nMonth = nMo. 阅读全文