calculate infinite precision
-
How can i caluclate infinite precision with out loosing any decimal eg. 1.3 * .344536345234246356664745 I want the result with all decimal. which datatype can use. thks
From what I know :) there is no way to calculate infinite precision with out loosing any decimal You may want to take a look at these data types The nearest datatypes you can use are float, double and decimal.
Just call me Valy... :)
-
How can i caluclate infinite precision with out loosing any decimal eg. 1.3 * .344536345234246356664745 I want the result with all decimal. which datatype can use. thks
Use Double Datatype. Double variables are stored as signed IEEE 64-bit (8-byte) double-precision floating-point numbers ranging in value from -1.79769313486231570E+308 through -4.94065645841246544E-324 for negative values and from 4.94065645841246544E-324 through 1.79769313486231570E+308 for positive values.
Regards, Satips.:rose: Don't walk in front of me, I may not follow; Don't walk behind me, I may not lead; Walk beside me, and just be my friend. - Albert Camus
-
How can i caluclate infinite precision with out loosing any decimal eg. 1.3 * .344536345234246356664745 I want the result with all decimal. which datatype can use. thks
You can not have infinite precision, as you don't have an infinite amount of memory availabe. The Decimal data type is the built-in type that gives you the highest precision. If that is not enough, you need to create your own data type or find someone who has.
--- single minded; short sighted; long gone;