Thread: Customer Account banking system error with variable input

  1. #1
    Registered User
    Join Date
    Sep 2014
    Location
    sacramento, CA
    Posts
    6

    Customer Account banking system error with variable input

    Im building a banking system. in my create_account it asks for account address and phone number as well as other questions. When I go to my Show account info (balance inquiry) I notice its not getting the right address as well as phone number. its showing "garbage". Im not sure whats going on If you can point me in the right direction and help out that would be appreciated.
    Code:
    /********************************************************************
    * Vincent Dotts            09/29/2014                       ch11.cpp *
    * This program serves as a customer banking system                  *
    *****************************HISTORY*********************************
    * WHO                   DATE              Discription               *
    *********************************************************************
    * VD                   09/30/2013          Created program          *
    ********************************************************************/
    #include<iostream>
    #include<fstream>
    #include<cctype>
    #include<iomanip>
    using namespace std;
    
    
    class account
    {
        int accno;
        double phone;
        char name[30], address[40];
        int deposit;
        char type;
    
    
    public:
        void create_account();        //function to get data from user
        void show_account() const;    //function to show data on screen
        void modify();                //function to add new data
        void dep(int);                //function to accept amount and add to balance amount
        void draw(int);                //function to accept amount and subtract from balance amount
        void report() const;        //function to show data in tabular format
        int retacno() const;        //function to return account number
        int retdeposit() const;        //function to return balance amount
        char rettype() const;        //function to return type of account
        //int validate(int*);            //prototype for function for validation
    };
    
    
    void account::create_account()
    {
        cout << "\nEnter The account # (5 digits): ";
        cin >> accno;
        while (accno < 10000 || accno > 99999)
        {
            cout << "Invalid Account # Please reenter";
            cin >> accno;
        }
        cout << "\n\nEnter The Name of The account Holder : ";
        cin.ignore();
        cin.getline(name, 30);
        cout << "\n\nEnter Address of The account Holder: "<<endl;
        cout << "Example: 18 First St, Oakland, CA 97836" <<endl;
        cin.ignore();
        cin.getline(address, 40);
        cout << "\nEnter Phone Number: ";
        cin >> phone;
        while (phone<1000000000 || phone>9999999999)
        {
            cout << "Invalid Phone # Please reenter";
            cin >> phone;
        }
        cout << "\nEnter Type of The account (C/S) : ";
        cin >> type;
        type = toupper(type);
        cout << "\nEnter The Initial amount(>=500 for Saving and >=1000 for current ) : ";
        cin >> deposit;
        cout << "\n\n\nAccount Created..";
    }
    
    
    void account::show_account() const
    {
        cout << "\nAccount No. : " << accno;
        cout << "\nAccount Holder Name: " << name;
        cout << "\nAccount Holder Address:" << address;
        cout << "\nAccount Holder Phone #:" << phone;
        cout << "\nType of Account : " << type;
        cout << "\nBalance amount : " << deposit;
    }
    
    
    
    
    void account::modify()
    {
        cout << "\nAccount No. : " << accno;
        cout << "\nModify Account Holder Name: ";
        cin.ignore();
        cin.getline(name, 30);
        cout << "\nModify Account Holder Address: " << endl;
        cout << "Example: 18 First St, Oakland, CA 97836";
        cin.ignore();
        cin.getline(address, 60);
        cout << "\nModify Account Holder Phone Number: ";
        cin >> phone;
        cout << "\nModify Type of Account: ";
        cin >> type;
        type = toupper(type);
        cout << "\nModify Balance amount: ";
        cin >> deposit;
    }
    
    
    
    
    void account::dep(int x)
    {
        deposit += x;
    }
    
    
    void account::draw(int x)
    {
        deposit -= x;
    }
    
    
    void account::report() const
    {
        cout << accno <<" " << name << " " << address<<" "<< phone << " " << type << " " << deposit << endl;
    }
    
    
    
    
    int account::retacno() const
    {
        return accno;
    }
    
    
    int account::retdeposit() const
    {
        return deposit;
    }
    
    
    char account::rettype() const
    {
        return type;
    }
    //        function declaration
    
    
    void write_account();                //function to write record in binary file
    void display_sp(int);                //function to display account details given by user
    void modify_account(int);            //function to modify record of file
    void delete_account(int);           //function to delete record of file
    void display_all();                   //function to display all account details
    void deposit_withdraw(int, int);   // function to desposit/withdraw amount for given account
    void intro();                       //introductory screen function
    
    
    //        THE MAIN FUNCTION OF PROGRAM
    
    
    int main()
    {
        char ch;
        int num;
        intro();
        do
        {
            system("cls");
            cout << "\n\n\n\tMAIN MENU";
            cout << "\n\n\t01. NEW ACCOUNT";
            cout << "\n\n\t02. DEPOSIT AMOUNT";
            cout << "\n\n\t03. WITHDRAW AMOUNT";
            cout << "\n\n\t04. BALANCE ENQUIRY";
            cout << "\n\n\t05. ALL ACCOUNT HOLDER LIST";
            cout << "\n\n\t06. CLOSE AN ACCOUNT";
            cout << "\n\n\t07. MODIFY AN ACCOUNT";
            cout << "\n\n\t08. EXIT";
            cout << "\n\n\tSelect Your Option (1-8) ";
            cin >> ch;
            system("cls");
            switch (ch)
            {
            case '1':
                write_account();
                break;
            case '2':
                cout << "\n\n\tEnter The account No. : "; cin >> num;
                deposit_withdraw(num, 1);
                break;
            case '3':
                cout << "\n\n\tEnter The account No. : "; cin >> num;
                deposit_withdraw(num, 2);
                break;
            case '4':
                cout << "\n\n\tEnter The account No. : "; cin >> num;
                display_sp(num);
                break;
            case '5':
                display_all();
                break;
            case '6':
                cout << "\n\n\tEnter The account No. : "; cin >> num;
                delete_account(num);
                break;
            case '7':
                cout << "\n\n\tEnter The account No. : "; cin >> num;
                modify_account(num);
                break;
            case '8':
                cout << "\n\n\tThank you Come Again";
                break;
            default:cout << "\a";
            }
            cin.ignore();
            cin.get();
        } while (ch != '8');
        return 0;
    }
    //        function to write in file
    
    
    void write_account()
    {
        account ac;
        ofstream outFile;
        outFile.open("account.dat", ios::binary | ios::app);
        ac.create_account();
        outFile.write(reinterpret_cast<char *> (&ac), sizeof(account));
        outFile.close();
    }
    //        function to read specific record from file
    
    
    void display_sp(int n)
    {
        account ac;
        bool flag = false;
        ifstream inFile;
        inFile.open("account.dat", ios::binary);
        if (!inFile)
        {
            cout << "File could not be open !! Press any Key...";
            return;
        }
        cout << "\nBALANCE DETAILS\n";
    
    
        while (inFile.read(reinterpret_cast<char *> (&ac), sizeof(account)))
        {
            if (ac.retacno() == n)
            {
                ac.show_account();
                flag = true;
            }
        }
        inFile.close();
        if (flag == false)
            cout << "\n\nAccount number does not exist";
    }
    //        function to modify record of file
    
    
    void modify_account(int n)
    {
        bool found = false;
        account ac;
        fstream File;
        File.open("account.dat", ios::binary | ios::in | ios::out);
        if (!File)
        {
            cout << "File could not be open !! Press any Key...";
            return;
        }
        while (!File.eof() && found == false)
        {
            File.read(reinterpret_cast<char *> (&ac), sizeof(account));
            if (ac.retacno() == n)
            {
                ac.show_account();
                cout << "\n\nEnter The New Details of account" << endl;
                ac.modify();
                int pos = (-1)*static_cast<int>(sizeof(account));
                File.seekp(pos, ios::cur);
                File.write(reinterpret_cast<char *> (&ac), sizeof(account));
                cout << "\n\n\t Record Updated";
                found = true;
            }
        }
        File.close();
        if (found == false)
            cout << "\n\n Record Not Found ";
    }
    //        function to delete record of file
    
    
    void delete_account(int n)
    {
        account ac;
        ifstream inFile;
        ofstream outFile;
        inFile.open("account.dat", ios::binary);
        if (!inFile)
        {
            cout << "File could not be open !! Press any Key...";
            return;
        }
        outFile.open("Temp.dat", ios::binary);
        inFile.seekg(0, ios::beg);
        while (inFile.read(reinterpret_cast<char *> (&ac), sizeof(account)))
        {
            if (ac.retacno() != n)
            {
                outFile.write(reinterpret_cast<char *> (&ac), sizeof(account));
            }
        }
        inFile.close();
        outFile.close();
        remove("account.dat");
        rename("Temp.dat", "account.dat");
        cout << "\n\n\tRecord Deleted ..";
    }
    //        function to display all accounts deposit list
    
    
    void display_all()
    {
        account ac;
        ifstream inFile;
        inFile.open("account.dat", ios::binary);
        if (!inFile)
        {
            cout << "File could not be open !! Press any Key...";
            return;
        }
        cout << "\n\n\t\tACCOUNT HOLDER LIST\n\n";
        cout << "*********************************************************************\n";
        cout << "A/c#      NAME      Address            Phone #     Type  Balance\n";
        cout << "*********************************************************************\n";
        while (inFile.read(reinterpret_cast<char *> (&ac), sizeof(account)))
        {
            ac.report();
        }
        inFile.close();
    }
    //        function to deposit and withdraw amounts
    
    
    void deposit_withdraw(int n, int option)
    {
        int amt;
        bool found = false;
        account ac;
        fstream File;
        File.open("account.dat", ios::binary | ios::in | ios::out);
        if (!File)
        {
            cout << "File could not be open !! Press any Key...";
            return;
        }
        while (!File.eof() && found == false)
        {
            File.read(reinterpret_cast<char *> (&ac), sizeof(account));
            if (ac.retacno() == n)
            {
                ac.show_account();
                if (option == 1)
                {
                    cout << "\n\n\tTO DEPOSITE AMOUNT ";
                    cout << "\n\nEnter The amount to be deposited";
                    cin >> amt;
                    ac.dep(amt);
                }
                if (option == 2)
                {
                    cout << "\n\n\tTO WITHDRAW AMOUNT ";
                    cout << "\n\nEnter The amount to be withdraw";
                    cin >> amt;
                    int bal = ac.retdeposit() - amt;
                    if ((bal<500 && ac.rettype() == 'S') || (bal<1000 && ac.rettype() == 'C'))
                        cout << "Insufficience balance";
                    else
                        ac.draw(amt);
                }
                int pos = (-1)*static_cast<int>(sizeof(ac));
                File.seekp(pos, ios::cur);
                File.write(reinterpret_cast<char *> (&ac), sizeof(account));
                cout << "\n\n\t Record Updated";
                found = true;
            }
        }
        File.close();
        if (found == false)
            cout << "\n\n Record Not Found ";
    }
    //        INTRODUCTION FUNCTION
    
    
    void intro()
    {
        cout << "\n\n\n\t CUSTOMER";
        cout << "\n\n\t ACCOUNT";
        cout << "\n\n\t  SYSTEM";
        cin.get();
    }

  2. #2
    Registered User
    Join Date
    Nov 2010
    Location
    Long Beach, CA
    Posts
    5,909
    Next time, providing a small sample input, and everything else we need to reproduce your problem would be useful. Also, don't put so many blank lines in there, it's hard to read and stuff goes off the screen too quickly, and it makes it hard to read when you post on the forum. Anyway, here's what I get (omitting menu display and some blank lines for brevity):
    Code:
        Select Your Option (1-8) 1
    
    Enter The account # (5 digits): 12345
    Enter The Name of The account Holder : jon
    Enter Address of The account Holder: 
    Example: 18 First St, Oakland, CA 97836
    123 any st, town, st 99999
    Enter Phone Number: 1234567890
    Enter Type of The account (C/S) : c
    Enter The Initial amount(>=500 for Saving and >=1000 for current ) : 1200
    ...
        Select Your Option (1-8) 4
    
    Enter The account No. : 12345
    
    BALANCE DETAILS
    
    Account No. : 12345
    Account Holder Name: jon
    Account Holder Address:23 any st, town, st 99999
    Account Holder Phone #:1.23457e+09
    Type of Account : C
    Balance amount : 1200
    That's pretty close.

    The phone number is not "garbage", it's scientific notation, which is normal for doubles with sufficiently large values. A double is a really, really, really bad way to store a phone number. Either store it as a sufficiently large integer type, like uint64_t, or as a string of chars. I might suggest the last one, as user input may contain dashes, dots, parentheses, a plus sign, space and other characters that people use to group digits in a phone number. That allows for better validation, error checking, and allows you to display it easily in whatever format you or the user wants.

    The only other issue I see is that the address is missing the first char. I think you should read up on the getline() function more carefully: istream::getline - C++ Reference. I suspect it's already reading and discarding the \n for you, so your cin.ignore is discarding the first char of address. Again, read up on ignore carefully: istream::ignore - C++ Reference.
    Last edited by anduril462; 09-30-2014 at 08:43 PM. Reason: clean up output

  3. #3
    Registered User
    Join Date
    Sep 2014
    Location
    sacramento, CA
    Posts
    6

    Thank you for your help

    @anduril462 I will keep that in mind when i post. Ive been overwelmed with work 18 units this semester. but I got it solved ya a string of chars is way better and cin.ignore wasnt needed a second time.


    Quote Originally Posted by anduril462 View Post
    Next time, providing a small sample input, and everything else we need to reproduce your problem would be useful. Also, don't put so many blank lines in there, it's hard to read and stuff goes off the screen too quickly, and it makes it hard to read when you post on the forum.

    The phone number is not "garbage", it's scientific notation, which is normal for doubles with sufficiently large values. A double is a really, really, really bad way to store a phone number. Either store it as a sufficiently large integer type, like uint64_t, or as a string of chars. I might suggest the last one, as user input may contain dashes, dots, parentheses, a plus sign, space and other characters that people use to group digits in a phone number. That allows for better validation, error checking, and allows you to display it easily in whatever format you or the user wants.

    I think you should read up on the getline() function more carefully: istream::getline - C++ Reference. I suspect it's already reading and discarding the \n for you, so your cin.ignore is discarding the first char of address. Again, read up on ignore carefully: istream::ignore - C++ Reference.

  4. #4
    C++まいる!Cをこわせ!
    Join Date
    Oct 2007
    Location
    Inside my computer
    Posts
    24,654
    I suggest you stop using char arrays and start using std::string. Furthermore, your "accounts" are all local variables, so they will be destroyed when you leave each function, making you re-create it all the time. This is probably not what you intended. Also get into the habit of providing the required information as arguments to classes instead of prompting inside the classes. This increases flexibility since you can choose where to get the data from (e.g. user or a file).
    Quote Originally Posted by Adak View Post
    io.h certainly IS included in some modern compilers. It is no longer part of the standard for C, but it is nevertheless, included in the very latest Pelles C versions.
    Quote Originally Posted by Salem View Post
    You mean it's included as a crutch to help ancient programmers limp along without them having to relearn too much.

    Outside of your DOS world, your header file is meaningless.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Banking System
    By david123456 in forum C++ Programming
    Replies: 9
    Last Post: 11-22-2012, 12:57 PM
  2. Banking System
    By punnuindia in forum C++ Programming
    Replies: 9
    Last Post: 04-01-2009, 05:05 PM
  3. Replies: 5
    Last Post: 10-08-2007, 09:44 AM
  4. customer input
    By buckwheat88 in forum C Programming
    Replies: 6
    Last Post: 11-21-2005, 08:01 PM
  5. Develop new Investment Banking Trading System in Singapore
    By pclyne in forum Projects and Job Recruitment
    Replies: 0
    Last Post: 11-14-2005, 08:32 PM

Tags for this Thread