‘Programmer: Trey Long ‘Date: 3/25/21 ‘Calculates information for Buster’s Bagel Shop ‘Memory Values Const mcurBagelPrice As Currency = 3.00 Const mcurSalesTax As Currency = 0.05 Const mcurVeteranDiscount As Currency = 0.15 Const mcurBegalDiscount As Currency = 0.10 Dim mintBegalCount As Integer Dim mintWheat As Integer Dim mintWhite As Integer Dim mintOat As Integer Dim mintRaisin As Integer Dim mintCinnamon As Integer Dim mcurAverageSalePrice As Currency Dim mcurAmountDue As Currency Dim mcurTotalSales As Currency Option Explicit Private Sub cmdCalculate_Click() ‘Calculations If optWheat.value = True Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) mintWheat = mintWheat + 1 mintBagelCount = mintBagelCount + 1 ElseIf chkVeteran.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) - (mcurBagelPrice * mcurVeteranDiscount) ElseIf chkBagelDiscount.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) - (mcurBagelPrice * mcurBagelDiscount) End If If optWhite.value = True Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) mintWhite = mintWhite + 1 mintBagelCount = mintBagelCount + 1 ElseIf chkVeteran.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) - (mcurBagelPrice * mcurVeteranDiscount) ElseIf chkBagelDiscount.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) - (mcurBagelPrice * mcurBagelDiscount) End If If optOat.value = True Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) mintOat = mintOat + 1 mintBagelCount = mintBagelCount + 1 ElseIf chkVeteran.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) - (mcurBagelPrice * mcurVeteranDiscount) ElseIf chkBagelDiscount.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) - (mcurBagelPrice * mcurBagelDiscount) End If If optRaisin.value = True Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) mintRaisin = mintRaisin + 1 mintBagelCount = mintBagelCount + 1 ElseIf chkVeteran.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) - (mcurBagelPrice * mcurVeteranDiscount) ElseIf chkBagelDiscount.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) - (mcurBagelPrice * mcurBagelDiscount) End If If optCinnamon.value = True Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) mintCinnamon = mintCinnamon + 1 mintBagelCount = mintBagelCount + 1 ElseIf chkVeteran.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) - (mcurBagelPrice * mcurVeteranDiscount) ElseIf chkBagelDiscount.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) - (mcurBagelPrice * mcurBagelDiscount) End If If chkNotVeteran.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) ElseIf chkNoBagelDiscount.value = Checked Then mcurAmountDue = mcurBagelPrice + (mcurBagelPrice * mcurSalesTax) ElseIf chkBagelDiscount = Checked AND chkVeteran = Checked Then MsgBox “System Error”,vbExclamation,”Buster’s Bagel Shop” End If ‘Format Output lblAmountDue.caption = FormatCurrency(mcurAmountDue) End Sub Private Sub cmdNextCustomer_Click() ‘show information in summary If cmdNextCustomer_Click() = True Then mcurTotalSales = mcurTotalSales + mcurAmountDue End If optWheat = False optWhite = False optOat = False optRaisin = False optCinnamon = False chkVeteran = Unchecked chkNotVeteran = Unchecked chkBagelDiscount = Unchecked chkNoBagelDiscount = Unchecked lblAmountDue = “ “ End Sub Private Sub cmdSummary_Click() Dim strMessageString As String If mintBagelCount <> 0 Then strMessageString = "# of Bagels Sold: " & mintBagelCount & vbCrLf & _ “# of Wheat Bagels Sold: “ & mintWheat & vbCrLf & _ “# of White Bagels Sold: “ & mintWhite & vbCrLf & _ “# of Oat Bagels Sold: “ & mintOat & vbCrLf & _ “# of Raisin Bagels Sold: “ & mintRaisin & vbCrLf & _ “# of Cinnamon Bagels Sold: “ & mintCinnamon & vbCrLf _ “Average Sale Price: “ & mintAverageSalePrice & vbCrLf _ “Total Sales Summary: “ & mcurTotalSales MsgBox strMessageString, vbInformation, "Buster’s Bagel Shop" Else MsgBox "No Data To Summarize", vbExclamation, "Busters’s Bagel Shop" End If mintAverageSalePrice = FormatCurrency(mintAverageSalePrice) mcurTotalSales = FormatCurrency(mcurTotalSales) mintAverageSalePrice = mcurTotalSales / mintBagelCount End Sub Private Sub cmdExit_Click() End End Sub
Write, Run & Share VB.net code online using OneCompiler's VB.net online compiler for free. It's one of the robust, feature-rich online compilers for VB.net language, running on the latest version 16. Getting started with the OneCompiler's VB.net compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as VB.net
. OneCompiler also has reference programs, where you can look for the sample code to get started with.
OneCompiler's VB.net online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample VB.net program which takes name as input and prints hello message with your name.
Public Module Program
Public Sub Main(args() As string)
Dim name as String = Console.ReadLine() ' Reading input from STDIN
Console.WriteLine("Hello " & name) ' Writing output to STDOUT
End Sub
End Module
Visual Basic is a event driven programming language by Microsoft, first released in the year 1991.
Variable is a name given to the storage area in order to identify them in our programs.
Simple syntax of Variable declaration is as follows
Dim variableName [ As [ New ] dataType ] [ = initializer ]
variableName = value
If condition-expression Then
'code
End If
If(conditional-expression)Then
'code if the conditional-expression is true
Else
'code if the conditional-expression is false
End If
If(conditional-expression)Then
'code if the above conditional-expression is true
Else If(conditional-expression) Then
'code if the above conditional-expression is true
Else
'code if the above conditional-expression is false
End If
If(conditional-expression)Then
'code if the above conditional-expression is true
If(conditional-expression)Then
'code if the above conditional-expression is true
End If
End If
Select [ Case ] expression
[ Case expressionlist
'code ]
[ Case Else
'code ]
End Select
For counter [ As datatype ] = begin To end [ Step step ]
'code
[ Continue For ]
'code
[ Exit For ]
'code
Next [ counter ]
For Each element [ As datatype ] In group
'code
[ Continue For ]
'code
[ Exit For ]
'code
Next [ element ]
While conditional-expression
'Code
[ Continue While ]
'Code
[ Exit While ]
'Code
End While
Do { While | Until } conditional-expression
'Code
[ Continue Do ]
'Code
[ Exit Do ]
'Code
Loop
Do
'Code
[ Continue Do ]
'Code
[ Exit Do ]
'Code
Loop { While | Until } conditional-expression
Procedure is a sub-routine which contains set of statements. Usually Procedures are written when multiple calls are required to same set of statements which increases re-usuability and modularity.
Procedures are of two types.
Functions return a value when they are called.
[accessModifiers] Function functionName [(parameterList)] As returnType
'code
End Function
Sub-procedures are similar to functions but they don't return any value.
Sub ProcedureName (parameterList)
'Code
End Sub