Create a JSP that will display a multiplication chart back to the user (i.e., similar to the Factorial JSP example given in the class). You should provide the followings:
- A HTML page that asks the user to enter the number to multiply and up to what number in separate text boxes/fields
- When the user clicks on the submit button, the request is sent to the Multiply.jsp to generate the results.
- For example, if the user enters Number to Multiply = 12 and Up to Number = 10, then the response page should display the followings:
Multiplication Table for 12:
12 x 0 = 0
12 x 1 = 12
. . . [the results for 12 x 2 to 12 x 9] . . .
12 x 10 = 120