You are on page 1of 1

Start

ask the user’s account


type AND level AND
balance

Acount type = Student Yes


AND level = standard
Display Interest
AND balance >=25? Rate is 1.3%

No

Acount type = Personal Yes


AND level = standard
Display Interest
AND balance >=0? Rate is 1.2%

No

Acount type = Personal


Yes
AND level = gold
Display Interest
AND balance >=5000? Rate is 2.3%

No

Acount type = Personal Yes


AND level = gold
Display Interest
AND balance >=1000? Rate is 1.9%

No

Yes
Acount type = business
AND level = standard
Display Interest
AND balance >=1500? Rate is 1.7%

No

Acount type = business Yes


AND level = gold
Display Interest
AND balance >=10000? Rate is 2.5%

Display Error the acount


information you enterd is
not valid

Stop
Step 1 :- Start

Step 2 :- INPUT user account type, level, and balance.

Step 3:- IF account type is “Student” and level is “standard” and balance >= 25
PRINT “Interest Rate is 1.3%”

Step 4:- ELSEIF account type is “personal” and level is “standard” and balance >= 0
PRINT “Interest Rate is 1.2%”

Step 5:- ELSEIF account type is “personal” and level is “gold” and balance >= 5000
PRINT “Interest Rate is 2.3%”

Step 6:- ELSEIF account type is “personal” and level is “standard” and balance >=1000
PRINT “Interest Rate is 1.9%”

Step 7:- ELSEIF account type is “business” and level is “standard” and balance >=1500
PRINT “Interest Rate is 1.7%”

Step :- ELSEIF account type is “business” and level is “gold” and balance >= 10000
PRINT “Interest Rate is 2.5%”

Step 9:- ELSE


PRINT "Error: the account"
ENDIF
Step 10:- Stop

You might also like