<!--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>
<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>
ReplyDeleteVery informative article.Thank you author for posting this kind of article .
http://www.wikitechy.com/view-article/c-program-to-find-factorial-of-a-number-with-example-and-explanation
Both are really good,
Cheers,
Venkat