eLK
10-28-2009, 04:46 AM
A bank charges a $10 basic fee per month, plus the following check fees for a commercial checking account:
$0.10 each for less than 20 checks
$0.08 each for 20 through 39 checks
$0.06 each for 40 through 59 checks
$0.04 each for 60 or more checks
Create an application that allows the user to enter the number of checks written. The application should compute and display the bank’s service fees for the month. All checks for the month are assigned the same charge, based on the total number of checks written during the month. (Suggestion: use a Select Case statement to assign the per-check processing fee.)
That is what I have to do, I am a very new and beginner. All I have so far is..
Dim strResponse As String
Console.WriteLine("Enter the total number of checks written: ")
strResponse = Console.ReadLine
Console.WriteLine("Total Bank Fees: " & strResponse & " ")
What else do I need to do?
I can pay a little if necessary.
$0.10 each for less than 20 checks
$0.08 each for 20 through 39 checks
$0.06 each for 40 through 59 checks
$0.04 each for 60 or more checks
Create an application that allows the user to enter the number of checks written. The application should compute and display the bank’s service fees for the month. All checks for the month are assigned the same charge, based on the total number of checks written during the month. (Suggestion: use a Select Case statement to assign the per-check processing fee.)
That is what I have to do, I am a very new and beginner. All I have so far is..
Dim strResponse As String
Console.WriteLine("Enter the total number of checks written: ")
strResponse = Console.ReadLine
Console.WriteLine("Total Bank Fees: " & strResponse & " ")
What else do I need to do?
I can pay a little if necessary.