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 |
Can someone please tell me what poor design in a relational database (not the layout or style) is and how it can be avoided? PLEASE...im desperate.
how to retrieve native property value in runtime?
write a vb script to generate fibonnaci numbers
To get data from table which method will be used in QTP
write a vbscrpit to swap values
How will you reverse a string in vbscript?
how to acces the remote mechine using vb cript(QTP)
Explain the .wsf files?
Which operator is used to perform the comparison among 2 operands in the vbscript language?
write a vb script to display the reverse of vbs
What are the valid scopes of a variable in vbscript?
How to Enter Values on the Command promt using VB script