answersLogoWhite

0

How do find factorial using vbscript?

Updated: 10/24/2022
User Avatar

Wiki User

12y ago

Best Answer

<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>

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do find factorial using vbscript?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you find out how many digits are in integer using vbscript?

num=32767 MsgBox(len(num))


By using call by reference find the factorial of a number?

chutia mc,bc bhosdika


Home page containing pull down menu box for the links using vbscript?

Home page containing pull down menu box for the links using VBScript.


Write the Pseudocode to find the factorial of a number?

Pseudo code+factorial


When was VBScript created?

VBScript was created in 1996.


Algorithm to find factorial using functions?

factorial using recursion style in c++ is unsigned int fact(unsigned int a) { if (a&lt;=1) return 1; else { f*=fact(a-1); return a; } } when using looping structure factorial is unsigned int fact (unsigned int n) { unsigned int i,f=1; for(i=1;i&lt;=n;i++) f*=i ; return f; }


Program to find n th fabonacci number?

#include #include using std::cin;using std::cout;using std::endl;using std::tolower;long factorial(const int& N);int main(){int N = 0; //factorial of Nchar command = 'n';do{cout > N;cout


How you can find a factorial of a number without using multiple operator?

If you really wanted to do this, you could simulate multiplication with repeated addition.


Flowchart to find factorial of a given no?

Kat


Jntu 2-2 oops through java answers?

write a java program to find factorial using recursive and non recursive


What is vbscript?

! VBScript is a Microsoft created program. It stands for Visual Basic Scripting


What has the author Sloan Trasher written?

Sloan Trasher has written: 'Building web applications using VBScript' -- subject(s): World Wide Web, HTML (Document markup language), VBScript (Computer program language)