1: // Filenme: TT4.CPP 3: #include <iostream> 4: #include <fstream> 5: #include <iomanip> 6: using namespace std; 8: #include "T4.H" 9: #include "PAUSE.H" 12: int main() 13: { 14: Time t1(9, 10, 11); 15: cout << t1 + 1 << endl; 16: cout << 2 + t1 << endl; 18: return 0; 19: }