CJCoding With Joseph

Scientific Notation

A double x = 12345.678 is given. Print it in scientific notation with exactly 2 digits after the decimal point:

1.23e+04

Combine the scientific manipulator with setprecision(2) from <iomanip>.

Expected Output:

1.23e+04
Topics:
Printing
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.