29 lines
605 B
C++
29 lines
605 B
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: main.cpp
|
|
*
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 02/08/2025 11:05:02 AM
|
|
* Revision: none
|
|
* Compiler: gcc
|
|
*
|
|
* Author: YOUR NAME (),
|
|
* Organization:
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#include <iostream>
|
|
#include <cmath>
|
|
#include <cstdlib>
|
|
|
|
#include "account.h"
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char* argv[]) {
|
|
Account account(0.0);
|
|
return EXIT_SUCCESS;
|
|
}
|