#include "account-new.h" #include using namespace std; int main() { Account x; cout << "x: " << x << endl; Account y("123456",0); cout << "y: " << y << endl; bool ok = y.Deposit(100); cout << "y: " << y << ok << endl; ok = y.Withdraw(20); cout << "y: " << y << ok << endl; ok = x.Withdraw(20); cout << "x: " << x << ok << endl; Account z; Account w; cout << z << endl << w << endl; return 0; }