Answer to Question #43972 in Visual Basic for Carlos Adjetey

Question #43972
Write a project in visual basic to design a suitable form to allow the uses
to enter name of sales representative and sales amount and then calculate
and display commission. Commission is 7% of sales amount if sales
amount exceed Ringgits 60000 otherwise it is 5% tax @ 1% is to be
deducted on commission obtained.
1
Expert's answer
2014-07-07T12:46:11-0400
Module Module1
''' <summary>
''' Main function
''' </summary>
''' <remarks></remarks>
Sub Main()
'variables
Dim name As String
Dim amount As Double
Dim commission As Double
'promt user to enter name of sales
Console.Write("Enter name of sales: ")
name = Console.ReadLine()
'promt user to enter sales amount
Console.Write("Enter sales amount: ")
amount = Double.Parse(Console.ReadLine())
'Commission is 7% of sales amount if sales
If (amount > 60000) Then
commission = amount * 0.07
Else
' amount exceed Ringgits 60000 otherwise it is 5% tax @
commission = amount * 0.05
'1% is to be deducted on commission obtained.
commission -= commission * 0.1
End If
'show result
Console.WriteLine("Commission for this product " + name + " = $" + commission.ToString())
'Delay
Console.ReadLine()
End Sub
End Module

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS