The following is not tested:
function factorial
parameters number
private product, i
product = 1
for i = 1 to number
product = product * i
next
return product
The following is not tested:
function factorial
parameters number
private product, i
product = 1
for i = 1 to number
product = product * i
next
return product
The following is not tested:
function factorial
parameters number
private product, i
product = 1
for i = 1 to number
product = product * i
next
return product
The following is not tested:
function factorial
parameters number
private product, i
product = 1
for i = 1 to number
product = product * i
next
return product
Chat with our AI personalities
The following is not tested:
function factorial
parameters number
private product, i
product = 1
for i = 1 to number
product = product * i
next
return product
Pseudo code+factorial
<html> <script language="vbscript"> n=cint(inputbox("Enter a number")) dim f f=1 if n<0 then Msgbox "Invalid number" elseif n=0 or n=1 then MsgBox "The factorial of given number "&n&" is :"&f else for i=n to 2 step -1 f=f*i next MsgBox "The factorial of given number "&n&" is :"&f end if </script> </html>
bwiset
#include<stdio.h> #include<conio.h> main() { int f=1,i=1,n; clrscr(); printf("\n Enter factorial value"); scanf("%d",&n); for(;i<=n;i++) { f=f*i; } printf("\n The factorial value=%d",f); getch(); }
If you really wanted to do this, you could simulate multiplication with repeated addition.