Sunday, December 19, 2010

Sorry, again!

Well I've kinda forgotten about my blog for a while.  I'm gonna try to keep on posting and maybe introduce new concepts with some games!

1 comment:

  1. Can you please help me out with this???
    Design a class called Account that contains a private int ID for the Account default zero.A private double data field name Balance for the account default zero.A private data field named Annual Interest Rate default zero.Assume that all the account have the same interest rate.A private date data field named Date Created that stores the that when the account was created.
    A non argument constructor.A constructor which create an account with a specified ID and initial balance.This is an accessor and mutator methods for ID,Balance and Annual Interest Rate and you will have an accessor method for the date created.Method called Withdraw that withdraws a specified amount from the account and another method that deposit a specified amount into the account.A method named get Monthly Interest that return the monthly interest rate.
    Write a program that creates an account object with an account ID Wade,Balance of $20,000,'Annual Interest rate of 4.5%,withdraw $2,000,deposit $5,000..

    ReplyDelete