1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
using namespace std;
class Account
{
private:
string accountType;
string name;
int money;
int accountNumber;
int pin;
public:
Account(){};
void setAccount(string at){accountType=at;}
void setName(string n){name=n;}
void setMoney(int m){money=m;}
void setAccountNumber(int an){accountNumber=an;}
void setPin(int p){pin=p;}
string getAccountType(){return accountType;}
string getName(){return name;}
int getMoney(){return money;}
int getAccountNumber(){return accountNumber;}
int getPin(){return pin;}
void display()
{
cout<<left<<setw(10)<<accountType;
cout<<left<<setw(10)<<name;
cout<<left<<setw(7)<<money;
cout<<left<<setw(5)<<accountNumber;
cout<<left<<setw(5)<<pin;
system ("pause");
}
};
class Savings:public Account
{
private:
static int rate; //Just make get functions in class Account and get them in the inherited classes for the display.
int totalInt;
public:
Savings(){};
void setRate(){rate=2;}
void setTotalInt(int ti){totalInt=ti;}
void sDisplay()
{
cout<<left<<setw(13)<<getAccountType();
cout<<left<<setw(11)<<getName();
cout<<left<<setw(8)<<getMoney();
cout<<left<<setw(8)<<getAccountNumber();
cout<<left<<setw(7)<<getPin();
cout<<left<<setw(13)<<totalInt<<endl;
}
};
class Checkings:public Account
{
private:
int debitNum;
int securityCode;
public:
Checkings(){};
void setDebit(int d){debitNum=d;}
void setSecurity(int s){securityCode=s;}
void cDisplay()
{
cout<<left<<setw(13)<<getAccountType();
cout<<left<<setw(11)<<getName();
cout<<left<<setw(8)<<getMoney();
cout<<left<<setw(8)<<getAccountNumber();
cout<<left<<setw(7)<<getPin();
cout<<left<<setw(13)<<debitNum;
cout<<left<<setw(13)<<securityCode<<endl;
}
};
void sortName(Savings [], Checkings[], int, int);
void sortMoney(Savings [], Checkings[], int, int);
void sortAccountNumber(Savings [], Checkings[], int, int);
void displaySection();
int main()
{
Savings S[5];
Checkings C[5];
ifstream infile;
string accountType;
string name;
int money;
int accountNumber;
int pin;
int totalInt;
int debitNum;
int securityCode;
int check=0;
int save=0;
int choice;
infile.open("Accounts.txt"); //All the errors are just inheritance flaws.
for (int x=0; x<5; x++)
{
infile>>accountType>>name>>money>>accountNumber>>pin;
if (accountType=="Savings")
{
infile>>totalInt;
S[x-save].setAccount(accountType);
S[x-save].setName(name);
S[x-save].setMoney(money);
S[x-save].setAccountNumber(accountNumber);
S[x-save].setPin(pin);
S[x-save].setTotalInt(totalInt);
check+=1;
}
else
{
infile>>debitNum>>securityCode;
C[x-check].setAccount(accountType);
C[x-check].setName(name);
C[x-check].setMoney(money);
C[x-check].setAccountNumber(accountNumber);
C[x-check].setPin(pin);
C[x-check].setDebit(debitNum);
C[x-check].setSecurity(securityCode);
save+=1;
}
}
infile.close();
displaySection();
for (int x=0; x<check; x++)
{
S[x].sDisplay();
}
for (int x=0; x<save; x++)
{
C[x].cDisplay();
}
cin.get();
cout<<"Sort by: "<<endl;
cout<<"1. Name"<<endl;
cout<<"2. Money"<<endl;
cout<<"3. Account Number"<<endl;
cin>>choice; //<<<<<<<<the issue is somewhere here i guess
if (choice == 1)
{
sortName(S, C, save, check);
}
else if (choice == 2)
{
sortMoney(S, C, save, check);
}
else if (choice == 3)
{
sortAccountNumber(S, C, save, check);
}
else if (choice == 4)
{
cout<<"Okay, no sorting."<<endl;
}
else
{
cout<<"Invalid number!"<<endl;
}
system ("pause");
return 0;
}
void sortName(Savings S[], Checkings C[], int save, int check)
{
for (int x=0; x<check; x++)
{
for (int y=0; y<check-1; y++)
{
if (S[y].getName()<S[y+1].getName())
{
swap(S[y], S[y+1]);
}
}
}
for (int x=0; x<save; x++)
{
for (int y=0; y<save-1; x++)
{
if (C[y].getName()<C[y+1].getName())
{
swap(C[y], C[y+1]);
}
}
}
displaySection();
for (int x=0; x<check; x++)
{
S[x].sDisplay();
}
for (int x=0; x<save; x++)
{
C[x].cDisplay();
}
}
void sortMoney(Savings S[], Checkings C[], int save, int check)
{
for (int x=0; x<check; x++)
{
for (int y=0; y<check-1; y++)
{
if (S[y].getMoney()<S[y+1].getMoney())
{
swap(S[y], S[y+1]);
}
}
}
for (int x=0; x<save; x++)
{
for (int y=0; y<save-1; x++)
{
if (C[y].getMoney()<C[y+1].getMoney())
{
swap(C[y], C[y+1]);
}
}
}
displaySection();
for (int x=0; x<check; x++)
{
S[x].sDisplay();
}
for (int x=0; x<save; x++)
{
C[x].cDisplay();
}
}
void sortAccountNumber(Savings S[], Checkings C[], int save, int check)
{
for (int x=0; x<check; x++)
{
for (int y=0; y<check-1; y++)
{
if (S[y].getAccountNumber()<S[y+1].getAccountNumber())
{
swap(S[y], S[y+1]);
}
}
}
for (int x=0; x<save; x++)
{
for (int y=0; y<save-1; x++)
{
if (C[y].getAccountNumber()<C[y+1].getAccountNumber())
{
swap(C[y], C[y+1]);
}
}
}
displaySection();
for (int x=0; x<check; x++)
{
S[x].sDisplay();
}
for (int x=0; x<save; x++)
{
C[x].cDisplay();
}
}
void displaySection()
{
cout<<left<<setw(13)<<"Acc. Type";
cout<<left<<setw(11)<<"Name";
cout<<left<<setw(8)<<"Money";
cout<<left<<setw(8)<<"Acc.#";
cout<<left<<setw(7)<<"Pin";
cout<<left<<setw(13)<<"Int/Dbt.#";
cout<<left<<setw(13)<<"Security Code"<<endl<<endl;
}
|