Answer:
Flowchart:
Start
Input customer information (name, account number, etc.)
Calculate balance
Calculate interest
Prompt user to enter withdrawal amount
Calculate new balance
Print new balance
End
Pseudocode:
START
// Declare variables
DECLARE customerName
DECLARE customerAccountNumber
DECLARE customerBalance
DECLARE customerInterest
DECLARE withdrawalAmount
// Get customer information
INPUT customerName
INPUT customerAccountNumber
// Calculate balance
SET customerBalance = customerAccountNumber * customerInterest
// Calculate interest
SET customerInterest = customerBalance * 0.05
// Prompt user to enter withdrawal amount
INPUT withdrawalAmount
// Calculate new balance
SET customerBalance = customerBalance - withdrawalAmount
// Print new balance
PRINT customerBalance
END
Step-by-step explanation: