PDA

View Full Version : Basic Help


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.

Fumigator
10-28-2009, 05:14 AM
We don't do homework here. See 1.5.

http://www.codingforums.com/rules.htm

eLK
10-28-2009, 05:24 AM
I am not asking to do it, I am confused on what a next step would be or if I am heading in the right direction.

it career
10-28-2009, 09:05 AM
First design the database , like you need a table for customer , what all fields it should have , your application will be a VB form , connect it to the database , populate information from database , update database using the form.

technica
10-28-2009, 10:39 AM
You need to do lot of calculations.

Is this some question from your quarterly school exams?