CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8
  1. #1
    Join Date
    Apr 2009
    Posts
    16

    I need ur help.plz check it

    Im new to C++ and do not have strong skill over programming.....i nee your help to make coding of following statement.

    can anybody program this for me ? because i know here are very good programmers. I want to program this in C++.


    1. Create a BankTransaction class.
    2. Create following static data members:
    Balance to show balance.
    New Balance to get New balance from the user.
    Adjustment in order to do the adjustment in balance.
    Annual Interest Rate is used for the calculation of the interest.
    Interest data member to show the interest amount.
    3. Create constructor which display message when object is created.
    4. Create destructor which display message when an object is destroyed.


    5. Bank Transaction class have following public member functions:
    Deposit () to despite amount in the account.
    Withdrawal () to withdraw the amount from the bank.
    Balance () function for displaying the current balance.
    InterestRate () to set the interest rate. You must get interest
    rate from the user.
    AnnualInterest () is used to calculate the interest. The interest
    calculated should be deducted from the balance and the new balance
    after the deduction should be shown to the user.

    6. Now in the main; display a menu.

    1: Deposit
    2: Withdraw
    3: Get Balance
    4: Set annual interest rate
    5: Calculate interest

    Perform appropriate function when users select the option. If option is wrong then display the appropriate message. You should also give option to the user if he/she wants to perform more functions.

    help would be much appreciated..thanks

  2. #2
    Join Date
    Nov 2008
    Location
    Yerevan, Armenia
    Posts
    37

    Re: I need ur help.plz check it

    It's time to start reading some books.

  3. #3
    Join Date
    Apr 2007
    Location
    Mars NASA Station
    Posts
    1,436

    Re: I need ur help.plz check it

    Please ask specific questions.
    Thanks for your help.

  4. #4
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,635

    Re: I need ur help.plz check it

    Quote Originally Posted by itguy310 View Post
    can anybody program this for me ? because i know here are very good programmers. I want to program this in C++.
    You're contradicting yourself. If you want to program in C++, how does having one of us do it achieve your goal?

    Skizmo will be along momentarily with his "click".

  5. #5
    Join Date
    Apr 2009
    Posts
    16

    Re: I need ur help.plz check it

    thx for rply..

    no i want to write coding for this program..can anybody write this for me ?

  6. #6
    Join Date
    Jan 2006
    Location
    Singapore
    Posts
    6,765

    Re: I need ur help.plz check it

    Quote Originally Posted by itguy310
    no i want to write coding for this program..can anybody write this for me ?
    Please do your own homework. It will help you develop a "strong skill over programming".
    C + C++ Compiler: MinGW port of GCC
    Build + Version Control System: SCons + Bazaar

    Look up a C/C++ Reference and learn How To Ask Questions The Smart Way
    Kindly rate my posts if you found them useful

  7. #7
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,635

    Re: I need ur help.plz check it

    Quote Originally Posted by itguy310 View Post
    thx for rply..

    no i want to write coding for this program..can anybody write this for me ?
    You're still contradicting yourself. If you want to write it, go ahead.

    I'd recommend an English course before you get too far into programming. Your spelling is atrocious.

  8. #8
    Join Date
    Apr 2004
    Location
    Canada
    Posts
    1,342

    Re: I need ur help.plz check it

    Take a look at this thread.
    Old Unix programmers never die, they just mv to /dev/null

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured