Imports System, Microsoft.VisualBasic
Dim packageweight As Single
Console.Write("enter your package's weight in ounces: ")
packageWeight=console.ReadLine()
Console.Write("Enter your shipping rate here P for priority and E for Express: ")
ShipRate=console.ReadLine()
If packageWeight <= 8 and Packageweight >0 Then
ElseIF packageWeight > 8 and packageweight <16 Then
ElseIf Packageweight > 16 Then
finalCost = 7.95 + ((packageWeight-16)*0.30)
If packageWeight <=16 and packageWeight >0 Then
ElseIF PackageWeight > 16 Then
finalCost=10.95*Math.ceiling(packageWeight/16)
Console.WriteLine("shipping Price: " & formatCurrency(finalCost))