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 |
How are arrays declared in the vbscript language?
How to pass the parameter from one function to another function in VB Scripting?
write a program to display the system specifications of client system with the help of vb script.
I need to get some data from data base and store this (retrieved) data in a excel sheet using VB script in QTP9.0 I have created connection for data base I have created as excels sheet by using Set XL=CreateObject("Excel.Application") XLworksheet.cells(1,1).value= rs.fields.item("<<The data retrieved from data base >>") I have taken a for loop and changed the cells values (1 as i and another 1 as j) But still I am not able to get Plz kindly tell me know this . It is very urgent
what is resorceallocation
please can you help me to get a code of flames using a visual basic 6
how do you make the variable declaration mandatory?what is the use of "option explicit"?
Mention what if you do not specify anything when you call a procedure?
How will you convert a string to upper case string using vbscript?
give me an ex. of unoverloaded method?
What are lbound and ubound in the vbscript language?
What is difference between Active screen and movie screen recorder in QTP 9.2?