KS3 Parson Puzzle 4 VB.net – a better calculator

Code / algorithm aim

The code should allow the user to enter 2 numbers one after the other. The user will then be able to choose a mathematical symbol by typing in its name to add, subtract etc. If the user does not type the correct symbol name in or makes a spelling mistake the code will tell them that what they entered is not an available option. The code will output the correct total of the 2 numbers as chosen by the user.

Instructions

All the code that you need has been given below. Simply organise the code blocks into the correct order so that the code follows the algorithm aim above.

You can organise the blocks by clicking on the arrows on the right hand side to place them above or below the other blocks.

Imports System

Module Program


    Sub Main(args As String())
    End Sub

End Module