Tuesday, 27 January 2015

Javascript program to find factorial of N number using recursion.

<!--Program to find factorial of N number using recursion.-->

<html>
<head>
 <title>Factorial</title>
  <script type = "text/javascript">
    var n = parseInt(window.prompt("Enter the Number:"));
    var result = fact(n);
      window.alert("Factorial of the given number " + result);
      function fact(n)  
       {
        if(n == 0) 
        {
         return 1;
        } 
        else 
        {
         return n * fact(n - 1);
        }
       }
</script>
</head>
<body>
</body>
</html>

1 comment:

Read contacts in iOS using Swift with error handling

Just copy and paste the below code Pre-step before pasting the below code Add below line in AppDelegate.swift file below import statement ...