1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#include <string>
using namespace std;
const int MAX_ACCOUNTS = 4;
struct Info
{ int account;
string lastname;
string firstname;
double balance;
};
Info info[MAX_ACCOUNTS] = {
{ 100, "Jones", "Alan", 348.17 },
{ 300, "Smith", "Mary", 27.19 },
{ 400, "Sharp", "Sam", 0.00 },
{ 700, "Green", "Suzy", -14.22 }
};
|