Write a program that has five functions as follows: main – the main function wil
ID: 3627441 • Letter: W
Question
Write a program that has five functions as follows:main – the main function will declare three variables called number1, number2, and multiple. It will then be calling the other four functions. Calls to the input functions and the multiplication function will be on the right side of an assignment so that the returned values are assigned to the correct variables.
inputNumber1 – this function will display a message to the screen telling the user to enter the first number and it will then read a number from the keyboard. The number will be returned.
inputNumber2 – this function will display a message to the screen telling the user to enter the second number and it will then read a number from the keyboard. The number will be returned.
multiply – this function will receive two number parameters. It will then multiply the two numbers from the parameters. The answer of the multiplication is returned.
display – this function will have one number parameter and will display a message to the screen telling the user that the multiple of the numbers entered in the value in the parameter. There is no return value from this function so it should be a void.