Banking Management System using C++ Operations: Add Customer, View Details of all customer, Credit, Debit, Transfer
Banking Management System using C++
It is a Banking Management System using c++.without using any additional header file.
It includes functionality like:
1.Add Customer
2.View Details of all customer (Account Holder Name, Account Number, Current balance)
3.Credit to an account
4.Debit from an account
5.Transfer from one account to another account.
Here some basic c++ language concepts use like Class, Object, Constructor, Vector, String Class. Along with the conditional statements(if-else), for loop, while loop, and switch statements are also used.
Steps:
Step 1: First Compile the main.cpp file
Step 2: Then run the programme.
Step 3: After that you will be shown the operations mentioned above, select any of the options, and make the selected operation.
Details about the operations :
View All Customer: In this operation, you will be shown all the existing customers of the bank.
Credit: In this operation, you would enter an account number and the amount. After that, you will be shown a message of confirmation.
Debit: In this operation, you would enter an account number and the amount. After that, you will be shown a message of confirmation.
Transfer: In this operation, you would enter the sender account number and the receiver account number, and the amount. After that, you will be shown the message of confirmation.
Exit: This operation basically terminates the programme by showing o message "Thank You".
Submitted by SAYAK MUKHOPADHYAY (msayak1269)
Download packets of source code on Coders Packet
Comments