dim packageWeight, shippingPrice As Single
dim shippingOption As Char
Console.WriteLine("Enter package weight: ")
packageWeight = Console.ReadLine()
Console.WriteLine("Would you like to ship (P)riority or (E)xpress: " )
shippingOption = Console.ReadLine()
numPounds = Math.Ceiling(packageWeight/16)
If shippingOption = "P" Then
If packageWeight < 8 Then
Else If packageWeight > 8 And packageWeight <= 16 Then
Else shippingPrice = 7.95 + (packageWeight-16)*0.30
If shippingOption = "E" Then
If packageWeight <= 16 Then
Else shippingPrice = numPounds*10.95