Server IP : 172.16.15.8 / Your IP : 13.59.2.242 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/cathomas/cs212/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
//------------------------------------------------------------------------------ // // Author: Carey Thomas // File: time.cpp // Teacher: Dr. John Wang // Compile: g++ time1.cpp -o time1.out // Run: ./time.out < ttt.txt or input file // Goal: uses time.h and exttime.h // to compile // //------------------------------------------------------------------------------ #include <iostream> #include "time.h" #include "exttime.h" using namespace std; int main() { ExtTime myTime; int h, m, s; char dummy; string str; ZoneType z = {EST}; cin >> h >> dummy >> m >> dummy >> s >> str; while ( cin ) { cout << endl; if ( str == "CST" ) z = CST; else if ( str == "MST" ) z = MST; else if ( str == "PST" ) z = PST; else if ( str == "EDT" ) z = EDT; else if ( str == "CDT" ) z = CDT; else if ( str == "MDT" ) z = MDT; else if ( str == "PDT" ) z = PDT; myTime.Set (h, m, s, z); myTime.Write(); cin >> h >> dummy >> m >> dummy >> s >> str; } cout << "\n\nDone.\n\n"; return 0; }