Tagged Questions

5
votes
3answers
136 views

Formatting Output

I need to output numbers in scientific notation such that there is always a "0" before the decimal point. e.g. For the number x = 134.87546, I need to produce the output 0.134875E03 NOT ...
2
votes
2answers
75 views

How to read float with scientific notation from file C++?

I have a file with this format: -0.0064785667 0.73900002 0.028505694 4.7858757e-39 315 218 -0.0051828534 0.73900002 0.028505694 4.6936954e-39 316 218 -0.0038818798 0.73799998 0.028467119 ...
2
votes
3answers
821 views

Prevent scientific notation in ostream when using << with double

I need to prevent my double to print in scientific notation in my file, when I do this outfile<<X;
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
2answers
297 views

How to keep doubles from converting to scientific notation when using and stringStream

I'm making a function to return the number of decimal and whole number digits and am converting the inserted typename number to a string using sstreams. However the number when being converted to a ...
1
vote
5answers
678 views

Only 2 digits in exponent in scientific ofstream

So according to cplusplus.com when you set the format flag of an output stream to scientific notation via of.setf(ios::scientific) you should see 3 digits plus and a sign in the exponent. ...
0
votes
3answers
85 views

scientific notation's type

int s = 1e9; What is type of 1e9 and how precise is it? (Is it exactly equal to 1000000000?) Printing type of a value/variable to stdout would be useful if it's possible.
0
votes
3answers
226 views

C++, scientific notation, format number

Is it possible to format string in scientific notation in the following ways: set fixed places in exponent: 1 set fixed decimal places in mantisa: 0 double number = 123456.789 So the number ...
0
votes
5answers
636 views

Making C++ cout not use scientific notation

double x = 1500; for(int k =0; k<10 ; k++){ double t =0; for(int i=0; i<12; i++){ t += (double) x * 0.0675; x += (double) x * 0.0675; } ...