Tagged Questions

2
votes
2answers
2k views

String in scientific notation C++ to double conversion

I've got a database filled up with doubles like the following one: 1.60000000000000000000000000000000000e+01 Does anybody know how to convert a number like that to a double in C++? Is there a ...
1
vote
3answers
274 views

scientific notation abstraction in java

Is there a java class abstraction to denote scientific numbers (e.g. the number, 10 power modulus), so that I can do simple operations like multiplication or division on top of them. Note: Looking ...