13 lines
202 B
C++
13 lines
202 B
C++
#include <iostream>
|
|
#include <cmath>
|
|
#include <cstdlib>
|
|
|
|
using namespace std;
|
|
|
|
#include "account.h"
|
|
|
|
Account::Account ( double initial_balance ) : balance(initial_balance) {
|
|
}
|
|
|
|
Account::~Account () {
|
|
}
|