Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

IN PHYTHON PLEASE ! A bank in your town updates its customers accounts at the end of each month. The bank offers two types of

IN PHYTHON PLEASE !

A bank in your town updates its customers accounts at the end of each month. The bank offers two types of accounts: savings and checking. Every customer must maintain a minimum balance. If a customers balance falls below the minimum, there is a service charge of $15.00 for savings accounts and $30.00 for checking accounts. If the balance at the end of the month is at least the minimum balance, the account receives interest as follows:

  • Savings accounts receive 4% interest with balances of at least $3000; otherwise, the interest is 1.5%.
  • Checking accounts with balances of at least $4000 more than the minimum balance receives 2.0% interest; otherwise, the interest is 1.0%.

Write a simple program that reads a customers account number (int type), account type (char; s for savings, c for checking), minimum balance that account should maintain, and current balance. The program should then output the account number, account type, current balance, and an appropriate message. This program should continue to run until the user wants to quit.

Sample input data (you could create your own fictitious input data):

Account Number

Account Type

Minimum Requirement

Current Amount

----------------------------------------------------------------------------------------------------

100111

S

3000

3700

103001

C

4000

6290

200011

S

3000

2800

120021

C

4000

3500

130011

S

3000

1280

200110

C

4000

8150

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Repairing And Querying Databases Under Aggregate Constraints

Authors: Sergio Flesca ,Filippo Furfaro ,Francesco Parisi

2011th Edition

146141640X, 978-1461416401

More Books

Students also viewed these Databases questions

Question

Question May I set up a Keogh plan in addition to an IRA?

Answered: 1 week ago