Dim varPrice as decimal = 0
Dim strRead as string = ""
Console.WriteLine("Type one of the following: B for Basic, S for Silver, G for Gold, D for Diamond.")
strRead = Console.ReadLine()
If strRead.ToUpper = "B" then
ElseIf strRead.ToUpper = "S" then
ElseIf strRead.ToUpper = "G" then
ElseIf strRead.ToUpper = "D" then
Console.WriteLine("Try again")
Console.WriteLine("Do you want cinematic movie channels? (Y/N)")
strRead = Console.ReadLine()
If strRead.ToUpper = "Y" then
varPrice = varPrice + 9.50
Console.WriteLine("Do you want HBI movie channels? (Y/N)")
strRead = Console.ReadLine()
If strRead.ToUpper = "Y" then
varPrice = varPrice + 9.50
Console.WriteLine("Do you want showtimer movie channels? (Y/N)")
strRead = Console.ReadLine()
If strRead.ToUpper = "Y" then
varPrice = varPrice + 10.50
Console.WriteLine("Do you want local stations? (Y/N)")
strRead = Console.ReadLine()
If strRead.ToUpper = "Y" then
varPrice = varPrice + 9.50
Console.WriteLine("The total cost is " & varPrice)