An ATM allows a customer to withdraw a maximum of $500 per day. If a customer withdraws more than $300, the service charge is 4% of the amount over $300. If the customer does not have sufficient money in the account, the ATM informs the customer about the insufficient funds and gives the customer the option to withdraw the money for a service charge of $25.00. If there is no money in the account or if the account balance is negative, the ATM does not allow the customer to withdraw any money. If the amount to be withdrawn is greater than $500, the ATM informs the customer about the maximum amount that can be withdrawn. Write an algorithm that allows the customer to enter the amount to be withdrawn. The algorithm then checks the total amount in the account, dispenses the money to the customer, and debits the account by the amount withdrawn and the service charges, if any.
The Answer to the Question
is below this banner.
Can't find a solution anywhere?
NEED A FAST ANSWER TO ANY QUESTION OR ASSIGNMENT?
Get the Answers Now!You will get a detailed answer to your question or assignment in the shortest time possible.
Here's the Solution to this Question
int main(){longdoubletotal =500;longdoublewithdrawl =0;double charge =.04;while(total >0) { std::cout <<"Please enter an amount to withdraw from your balance of :$ "<< total << std::endl; std::cin >> withdrawl;if(withdrawl > total){ std::cout <<" Not enough money you have :$"<< total << std::endl; }elseif(withdrawl >300) {longdoublesubtotal = (withdrawl + (withdrawl*charge)); total -= subtotal; std::cout <<"There was a service charge of 4% and now you have : $"<< total <<" left. "<< std::endl; }elseif(withdrawl <300){ std::cout <<"You withdrew: "<< withdrawl << std::endl; total -= withdrawl; std::cout <<"and you have : $"<< total <<" left. \n"; } }system("pause>nul");return0; }