int a=4857 i need output as 7584.without using any inbuild
function?
Answers were Sorted based on User's Feedback
Answer / r.singh
varnum=4857
vartemp=0
while(varnum/10)>0 then
vartemp=(vartemp*10)+(varnum mod 10)
varnum=varnum/10
wend
rev=vartemp
msgbox rev
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / bantanahal haribabu
s="12345"
While int(s)>0
n=s mod 10
x=x&n
s=int(s)/10
Wend
msgbox x
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / testengineer
Thanku Mr.R.Singh,Miss Sumathi and Mr. Bantanahal Haribabu
But Could u please confirm me whether "MOD,INT,LEN" are Inbuilt Functions are not?
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / anil
s=4857
For i=Len(s) To 1 step-1
c=Mid(s,i,1)
temp=temp&c
Next
MsgBox temp
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sumathi
var=4857
For i=1 to len(var)
x=var mod 10
num=num&x
var=var/10
var=fix(var)
Next
print num
| Is This Answer Correct ? | 1 Yes | 0 No |
When to use function procedures and what are its characteristics?
Which function is used to perform string comparison?
write a vb script create 5 folders test1 test2 test3 test4 test5
Out of the different type of operators, which are evaluated first and last in the vbscript language?
i need to login to my yahoo accoutnt using VB Script, automating the operation of webobjects, even launching of IE. How?
Which function allows you to instantiate an object given its programmatic identifier or progid?
How to write VB script for login module?
how to set one column as primary key in QTP and fetch values accordingly
Why is the use of exit do or exit for statements within loops discouraged?
How to return a value from function...? you should not tell msgbox, print.. etc.,
How can we return a value from User Defined Function ? For Eg. we have 2 functions. In Fun1 i am getting 2 values (a,b) and i am addding those 2 and storing in to another var (c). Now i want to pass that var(c) to another function (fun2). What will be the script?
Give me sm ideas to write Vbscripts abt protocol testing abilash700@gmail.com.