Question: simple ASP.NET assignment A common mathematical function is the factorial function. The factorial function takes an integer input n that is greater than or equal
simple ASP.NET assignment
- A common mathematical function is the factorial function. The factorial function takes an integer input n that is greater than or equal to 1 and computes n * (n-1) * ... * 2 * 1. In mathematical texts, factorial is denoted with an exclamation point, as in n!. For this exercise, write a function called Factorial that takes a single Integer input and returns an Integer corresponding to the factorial of the inputted parameter.
- After you have written this Factorial function, add a Page_Load event handler that calls the function, displaying on the ASP.NET web page the values of 1! through 5!. Hint: The Factorial function will need to contain a looping construct from 1 to n, where, at each iteration, a variable is multiplied by the value of the looping variable. Open this page in a web browser, and take a screen print of the page.
- Next, modify the web pages so the code randomly select ten different numbers as input to have displayed as factorials. Select any ten numbers and take a screen print of the page. Include your code and the screen captures in the assignment
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
