Server IP : 172.16.15.8 / Your IP : 3.17.76.174 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/drsparks/212/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// // ... // // File: time4.cpp // Goal: // #include <iostream> #include "time.h" #include "exttime.h" using namespace std; int main() { ExtTime myTime; // O:O:O EST int h, m, s; // hh:mm:ss char dummy; // consume ':' string str; ZoneType z; // str ----> // Get the first line? cin >> h >> dummy >> m >> dummy >> s >> str; while(cin) { // convert from str to z? if ( str == "MST") z = MST; // finish each case!!!! // Set the data to myTime? myTime.Set(h, m, s, z); // output myTime? myTime.Write(); cout << endl; cin >> h >> dummy >> m >> dummy >> s >> str; } cout << "\n\nDone.\n\n"; return 0; }