You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hi gang,
I'm dividing one number by another and want the result to have one and
only one place after the decimal. I am currently using 'double(x)' for my
numbers but am gtting many places after the decimal. Any thoughts?
Thnaks!
Eugene
unread,
May 6, 2012, 12:03:39 PM5/6/12
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
One of the ways to do it is to use format command, for example:
% format %.2f [ expr 1024/3. ]
341.33