bank management system project class 12 cbse

  • Upload
    vava

  • View
    23

  • Download
    3

Embed Size (px)

DESCRIPTION

created by jerin,ann susan,ashin.....school:sacred heart public school mookkannur...

Citation preview

Slide 1

TOPIC:PROJECT ON BANK- MANAGEMENT- SYSTEM

SUBMITTED TO:MS.REMYA ABHILASHTEAM MEMBERS: ANNSUSAN PAUL ASHIN SAJEEV JERIN ELDHO::SOFTWARE DEVELOPERS::

ABSTRACT: Requirements definition and management is recognized as a necessary step in the delivery of successful system s and software projects, discipline is also required by standards, regulations, and quality improvement initiatives. Creating and managing requirements is a challenge of IT, systems and product development projects or indeed for any activity where you have to manage a contractual relationship. Organization need to effectively define and manage requirements to ensure they are meeting needs of the customer, while proving compliance and staying on the schedule and within budge. The impact of a poorly expressed requirement can bring a business out of compliance or even cause injury or death. Requirements definition and management is an activity that can deliver a high, fast return on investment. The BANK MANAGEMENT SYSTEM undertaken as a project is based on relevant technologies. The main aim of this project is to develop software for bank management system. This project is to develop software for bank management system. This project has been developed to carry out the processes easily and quickly, which is not possible with the manuals systems, which are overcome by this software. This project is developed using C++ language and. Hence it provides the complete solution for the current management system.

HEADER FILES USED:

1: #include2:#include3:#include4:#include5:#includeAccount.datios::binary|ios::in|ios::outios::binary|ios::appios::curios::binaryFILES GENERATED

WORKING DESCRIPTION This application is very useful in banks . This application enable user to create an account , modify an account , depositing and withdrawing.From the main menu we can choose different options option 1 enables you to create a new bank account which will be saved in database.Then you can deposit and withdraw amount .You can even add money to your account by using your account number . Later you also can withdraw the amount that you required.This application is similar to the original bank management system used in many banks.

CODING

//***************************************************************// HEADER FILE USED IN PROJECT//****************************************************************

#include#include#include#include#include

//***************************************************************// CLASS USED IN PROJECT//****************************************************************

class account{int acno;char name[50];int deposit;char type;11public:void create_account();//function to get data from uservoid show_account();//function to show data on screenvoid modify(); //function to get new data from uservoid dep(int);//function to accept amount and add to balance amountvoid draw(int);//function to accept amount and subtract from balance amountvoid report();//function to show data in tabular formatint retacno();//function to return account numberint retdeposit();//function to return balance amountchar rettype();//function to return type of account}; //class ends here

void account::create_account(){coutacno;coutdeposit;cout