a) You are to write a complete program which satisfies all of the the following:
-Include the appropriate access specifiers for the member variables and member functions.
-Include an additional member function to the Account class called setBalance(), which sets the balance value to a value passed to the function.
-Create a new class called SavingsAccount which is derived from the Account class.
-Override the withdraw() function to satisfy the condition that the minimum balance of a savings account must be P100.00 (ignore the currency symbols). -Create an object of the Savings Account.
-Set the balance of the SavingsAccount object to P250.00, deposit P182.26 then withdraw P100.00.
Withdraw an additional P310.00 from the balance left above.
Display the balance and /or any relevant message after each withdrawal in the two cases above.