Declare a class named Account, which has a private data member, a constructor, and three public function members. The data member is named balance and store the balance money in the account. The constructor has a default value as zero. The three public function members are ShowBalance function which will be return balance to the caller, WIthdraw function which will return the amount to be withdrew and update the balance if it can be withdrew(that is all accounts need to keep balance more or equal to zero), otherwise return 0, and Deposit function which will increase the value of balance.
i need to know how many function members beside constructor are there and name them
i need to know how many function members beside constructor are there and name them
Comment