main.cpp 264 B

123456789101112131415
  1. #include <iostream>
  2. #include "Datetime.h"
  3. #include <string>
  4. using namespace std;
  5. int main() {
  6. Datetime d2(2024, 10, 10, 12, 57, 34);
  7. cout << d2 << endl;
  8. Datetime d3(1, 1, 1);
  9. cout << d3 << endl;
  10. d2+=d3;
  11. cout << d2 << endl;
  12. return 0;
  13. }