|
-
May 7th, 2002, 06:40 PM
#1
Thread Starter
New Member
Display 16 digit numbers without scientific notation
Does anyone know how to display 16 digit numbers without scientific notation?
Now I have this:
dim rt = 4444555544446666
response.write (rt & "<br>")
rt = ((rt-1111333)^.5)/66
response.write (rt & "<br>")
rt = (( (rt*66)^2)+1111333 )
response.write (rt & "<br>")
and I get:
4444555544446666
1010113.63489608
4.44455554444667E+15
I need to diplay '4.44455554444667E+15' without scientific notation which is: '4444555544446666'
Any help greatly appreciated!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|