Assignment 2

Problem Statement

Write a program that provides personal banking applications to a user. It is expected that you will reuse the Date and DateCalculator classes you developed in the last project. The minimal set of services this program should provide are :

Business Rules


Design Guidelines

You may design your application using the following class:

class Account{
private:
	float Balance; 		// Current Balance amount	
	Date LastTransaction;   // Date of last transaction
	updateBalance(); 	// Compute interest; add to Balance 
	
	// other relevant data members and member functions 


public:
	menu();			// menu of service options 	
	deposit();		// deposit amounts
	withdraw(); 		// withdraw amounts
	inquire();		// balance inquiry

	// All additional relevant member functions, including 
	// constructors, Transaction getters, Transaction setters, 
	// Transaction displayers
};

Your main() function should only consist of the following:

 
int main(){
	Account myAccount;

	return(0);
}

Submitting Your Programs

Name your program files asg2.h asg2.C, and asg2_main.C. Copy them to your subdirectory under /accounts/classes/subraman/ba6806/. Please enable read permissions on your files.
The program is due on April 7, 2005


Grades...