Could Anybody tell me the VBscript for
REVERSE an Integer int reverse(int num) Ex:246 to 642
Answer Posted / lak
n=Inputbox("Enter Number Series to reverse")
for i=1 to len(n)
x=n mod 10
temp=temp&x
n=n/10
n=fix(n)
next
msgbox temp
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which keyword is used to declare a variable in the vbscript language?
did any one attended interview in applabs if you had gone through plz tell me the procedure
How to Import data from a file (file is on the desktop) to the data table
when we use filter funtiom invb script(QTP)
Which in-built function is used to format the number in the vbscript language?
What are the disadvantages of vbscript?
How to make professional test report using vbscript code in UFT, which gives us complete analysis of the test.
can anyone send me a vb scripts code for clicking on a link and coming back on home page again does the same for many links on a web page.
Mention what is the use of option explicit in vbscript?
What is vbscript?
Is vbscript language a case-sensitive language and what does it mean?
How will you reverse a string in vbscript?
What is the use of the instr function?
Which respective symbols are used to separate a line and to break the lengthy statement into multiple statements in the vbscript language?
Why to use option explicit in vb script?