Page 1 of 1

Jacob wants a program that displays his savings account balance at the end of the month, given the beginning balance, to

Posted: Mon Jul 11, 2022 9:53 am
by answerhappygod
Jacob wants a program that displays his savings account balanceat the end of the month, given the beginning balance, totaldeposits, and total withdrawals.
Input Begbal double Dept double Withdraw double ProcessingNewbal = begbal + dept - withdraw Output Beginningbalance xxx.x Deposited = xxx.xx Withdraw = xxx.xnewBalance = xxx.xx
Feb 1 1000 begbalance 1000.00
Feb total deposited 500
Feb withdrew 200
New balance march newbal = begbalance + dept -withdraw
1000+500 -200