dim packageweight as single
dim ShippingPrice as single
Console.WriteLine("Please enter mailtype (P) for priority (E) for express")
mailtype = console.readline()
Console.WriteLine("Please enter ShippingPrice & Format Currency (shippingprice")
Shippingprice = Console.ReadLine()
if packageweight <=8 then
elseif packageweight <= 16 then
elseif packageweight > 16 then
shippingprice = 7.95 + 0.30 and packageweight > 16
elseif mailtype = "E" then
if packageweight <= 16 then
elseif packageweight > 16 then
elseif packageweight >16 then
shippingprice = math.Ceiling( packageweight /16 )*10.95
console.WriteLine("please enter shippingprice as currency")