Re: Where to report Script Editor bug?
Re: Where to report Script Editor bug?
- Subject: Re: Where to report Script Editor bug?
- From: Michelle Steiner <email@hidden>
- Date: Fri, 20 Feb 2004 19:06:55 -0700
On Feb 20, 2004, at 3:32 PM, Chris Espinosa wrote:
Some calculations will hit zero exactly, in whch case you get 0;
others come very very close, where you'll get 0e+0; others may be off
enough that you'll see an actual non-zero value.
0 as degrees Celsius as string
--> " 0e+0"
No calculation involved.
Any temperature from 0.000001 through 1000000000000000 returns the
number in decimal notation.
1.0E+15 as degrees Celsius as string
"1000000000000000"
1.0E-6 as degrees Celsius as string
--> "0.000001"
Any number 0.0000001or smaller returns exponential notation.
1.0E-7 as degrees Celsius as string
--> " 1e-7"
Any number 1.0E+16 as degrees Celsius as string or greater returns
exponential notation.
1.0E+16 as degrees Celsius as string
--> " 1e+16"
I did not test intermediate values between 1.0e-7 and 10.0e-7, nor
between 1.0e+15 and 1.0e+17, nor did I test negative numbers.
--
Those who extol the "nobility of labor" mean the labor of others.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.