dim pi as double = CDbl(System.Math.Pi)
console.writeline("Which shape do you want to find the area of?")
figure = console.readline()
console.writeline("What is the circle's radius?")
console.writeline("The area of the circle is " & area & ".")
Case "parallelogram", "Parallelogram"
console.writeline("What is the length of the parallelogram?")
console.writeline("What is the height of the parallelogram?")
console.writeline("The area of the parallelogram is " & area & ".")
console.writeline("What is the length of the kite?")
console.writeline("What is the width of the kite?")
console.writeline("The area of the kite is " & area & ".")
console.writeline("Please input another shape.")