Server IP : 172.16.15.8 / Your IP : 18.221.68.196 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 (0705) : /home/cjabbott/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
#include <iostream> #include <fstream> #include <iomanip> using namespace std; const int MAX = 100; ifstream infile; class List { string name [MAX]; string ssn [MAX]; int length; public: List() { length = 0; } int Length() const { return length; } void Insert(string aName, string aSsn) { name[length] = aName; ssn[length] = aSsn; length ++; } void Print() const; }; void List :: Print() const { for( int k=0; k < length; k++) cout << name[k] << setw(50 - name[k].length() ) << ssn[k] << endl; } int main(int argc, char* argv[]) { infile.open("in.txt"); if(!infile) { cout << "Error to open the file!\n"; getchar(); exit(0); } List myList; string nameString; string ssnString; infile >> ssnString; getline (infile, nameString); while(infile) { myList.Insert(nameString, ssnString); infile >> ssnString; getline(infile, nameString); } myList.Print(); return 0; }