Dim T3() As Integer = {100, 120, 300}
Dim T6() As Integer = {150, 200, 500}
Console.WriteLine("Enter Plane [2 Seater, 4 Seater, Historic]:")
If P = "2 Seater" Or P = "2" Then
ElseIf P = "4 Seater" Or P = "4" Then
ElseIf P = "Historic" Or P = "H" Then
Console.writeline("Invalid input. Check that you have selected one of the options and have spelt your choice correctly.")
Console.WriteLine("Enter Length of Flight [30 mins, 60 mins]:")
If P = "30 mins" Or P = "30" Then
ElseIf P = "60 mins" Or P = "60" Then
Console.WriteLine("Invalid input. Check that you have selected one of the options and have spelt your choice correctly.")
MN = Math.Floor(H / (0.5 * PL + 1))
Console.WriteLine("The maximum number of flights in a day for this plane is " & MN & ".")
Console.WriteLine("The maximum income this plane can earn per day is " & "$" & MI * MN & ".")