Bank Account Program

  • Hello Guest! Welcome to ConsoleCrunch, to help support our site check out the premium upgrades HERE! to get exclusive access to our hidden content.
  • Unable to load portions of the website...
    If you use an ad blocker addon, you should disable it because it interferes with several elements of the site and blocks more than just adverts.
  • Read Rules Before Posting Post Virus Scans with every program.

Psycho_Coder

Active Poster
Retired Staff
Active Member
Apr 12, 2014
642
481
133
UK
I created a simple bank account program before. Nothing much, Take it edit it, But leave credit for me. :P

Here is the accounts.h file.
Code:
class cust_acc
{
      private:
              float bal;
              int acc_num;
      public:  
          void setup();
          void lodge(flost);
          void withdraw(float);
          void balance();
         
          }
Here is the accfuns file.
Code:
/*
*This was created By RealTimeModding
* program file 'accfunc.cpp'
* define 'cust_acc' member functions
*/

#include <iostream>
using namespace std;

#include 'accounts.h'

//
//custom_account member functions
//
void cust_acc::setup()
{
cout << "enter number of account to be opened: ";
cin >> acc_num;
cout << "enter initial balance: ";
cin >> bal;
cout << "customer account" << acc_num
                << "created with balance" << bal << endl;
                }
                void cust_acc::lodge(float lodgement}
                {
                     bal += lodgement;
                     cout << "lodgement of " << lodgement << "accepted " << endl;
                     }
                void cust_acc::withdraw(float with)
                {
                     if(bal > with)
                     {
                            bal = with;
                            cout << "withdrawal of" << with
                                  << "granted" << endl;
                                  return;
                                  }
                            cout << "insufficent balance for withdrawal of"<< with << endl;
                            cout << "withdrawal of" << bal << "granted" << endl;
                            bal     = (float)0;
                            }
                     void_cus_acc:balance()
                     {
                        cout << "balance of account is" << bal << endl;
                       
                                           }

Here is the accounts file.

Code:
/*
*This was created by ReaaTimeModding
* program file 'accounts.cpp'
*drievs the 'cust_acc' class
*/

#include <iostream>
using namespace std;

#include "accounts.h"

int main()
{
    cust_acc a1;
    a1.setup();
    a1.lodge(250.00);
    a1.balance();
    a1.withdraw(500.00);
    a1.balance();
}
 
  • Like
Reactions: TheMystery
Is it a good thing that I can still understand coding? Lol xD Its been like 1-2 years since I messed with code haha.
 
  • Like
Reactions: Psycho_Coder
General chit-chat
Help Users
      Chat Bot: QM|T_JinX has joined the room.