Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

In the Simple Program Design (5th Edition) book. Chapter 3 Problem 5 PP. Can you put that solution into the raptor flow chart and screen

In the Simple Program Design (5th Edition) book. Chapter 3 Problem 5 PP. Can you put that solution into the raptor flow chart and screen shot it?

Questiong:

You require and algorithm to read in three values from a customers bank account: the account balance at the beginning of the month, a total of all withdrawals from the account for the month, and a total of all deposits into the account during the month. A federal tax charge of 1% is applied to all transactions made during the month. The program is to calculate the account balance at the end of the month by (1) subtracting the total withdrawals from the account balance, (3) calculating the federal tax (1% of total transactions that is, total withdrawals + total deposits), and (4) subtracting this federal tax from the new balance. After these calculations, print the final end-of-month balance.

Solution:

Calculate_new_account_balance

  1. Read account_balance
  2. Read total_withdrawals
  3. Read total_ deposits
  4. new_balance = account_balance total_withdrawals + total deposits
  5. federal_tax = .01 * (total_withdrawals + total_deposits
  6. new_account_balance = new_balance federal_tax
  7. Print new_account_balance

END

Just would like the raptor flow chart. Thank you

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions