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
Mention what is vbscript procedures?
Is vbscript a case-sensitive or case-insensitive?
Mention what is the main difference between function and sub-procedure?
What are lbound and ubound in the vbscript language?
What are the environments supported by vbscript language?
What is event handling in vbscript?
What is vbscript procedures?
How to assign a numeric value to a variable?
What is the difference between VBScript and JavaScript?
create a form to accept username and password validate the username and password with using message box, display the corresponding user message
When are redim statement and preserve keyword used in the vbscript language?
Like OPTION EXPLICIT statement what are the other statements used in vbscript and their usage. Please post me all the statements please.
How to Enter Values on the Command promt using VB script
How will you get the smallest subscript of an array in vbscript?
What is the difference between function and procedure?