Enter any number on the page and click the button to calculate the factorial ., Page factorial

Source: Internet
Author: User

Enter any number on the page and click the button to calculate the factorial ., Page factorial

<! DOCTYPE html>
<Html>
<Head>
<Meta charset = "UTF-8">
<Title> </title>
<Script type = "text/javascript">
// Use a function to calculate any number factorial.
// Requirement: enter any number on the page and click the button to calculate the factorial.
Function $ (id) {return document. getElementById (id );}
// Use $ to replace document. getElementById () to reduce the code repetition rate.
Window. onload = function ()
{
ONum = $ ('num ');
OButt = $ ('butt ');
OBox = $ ('box ');

Function jie (n ){
// Calculate the factorial function and use the Recursive Method
If (n = 1)
{
Return 1;
}
Return n = n * jie (n-1 );
// Recursive formula n! = N * (n-1 )!
}

OButt. onclick = function (){
// Click to output the factorial event
NNum = Number (oNum. value );
OBox. innerHTML = jie (nNum );
}
}
</Script>
</Head>
<Body>
<Input id = "num" type = "text"/>
<Input id = "butt" type = "button" value = "Calculate factorial"/>
<Div id = "box"> </div>
</Body>
</Html>

 

Bytes

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.