Dim strTwin as string = "TWIN"
Dim strFull as string = "FULL"
Dim strKing as string = "KING"
Dim strQueen as string = "QUEEN"
Dim varTotalCost as decimal = 0
Dim strRead as string = ""
Console.WriteLine("Choose a bed size: Twin, Full, Queen, King")
strRead = Console.ReadLine()
If strRead.ToUpper = strTwin then
ElseIf strRead.ToUpper = strFull then
ElseIf strRead.ToUpper = strQueen then
ElseIf strRead.ToUpper = strKing then
Console.WriteLine("Please try again")
Console.WriteLine("The current cost is " & varTotalCost)
Console.WriteLine("Will it be picked up in store? (Y/N)")
strRead = Console.ReadLine()
If strRead.ToUpper = "N" then
varTotalCost = varTotalCost + 5
ElseIf strRead.ToUpper = "Y" then
varTotalCost = varTotalCost + 0
Console.WriteLine("Please try again")
Console.WriteLine("The total cost is " & varTotalCost)