write a vb script to generate fibonnaci numbers
Answer / mudaseer
vnum=inputbox("enter a number")
i=0
j=1
vstr=i & "," & j & ","
msgbox vstr
for x=1 to vnum-2
k=i+j
vstr=vstr & k & ","
i=j
j=k
next
msgbox vstr
vnum=inputbox("enter a no")
i=0
j=1
vstr=i & "," & j & ","
msgbox vstr
for x=1 to vnum-2
k=i+j
vstr=vstr & k & ","
i=j
j=k
next
msgbox vstr
Is This Answer Correct ? | 3 Yes | 1 No |
Does VB/Win make standalone .EXE files?
Diff between web table ,datatable and data base (QTP)
Explain about adodb.stream class?
How can I get the value of an object property or variable in another frame?
Description.Create
how to organize files in object repository of qtp
Explain what is loose binding? Why is it not a good practice to use it?
What are the properties of regexp object?
how do you make the variable declaration mandatory?what is the use of "option explicit"?
Explain the support of asp for vb script functionality?
How to take whole text output from screen of Bitmap Application.
how to write validation function for date in vb script