Dim strLength As String = ""
Dim strWidth As String = ""
Dim dblArea As Double = 0
Dim dblYards As Double = 0
Console.WriteLine("Enter Length of rectangle")
strLength = Console.ReadLine()
Console.WriteLine("Enter Width of rectangle")
strWidth = Console.ReadLine()
Convert.ToDouble(strLength)
Convert.ToDouble(strWidth)
dblArea = strLength * strWidth
Console.WriteLine("Area in feet is " & dblArea)
Console.WriteLine("Yards is " & dblYards)