CJCoding With Joseph

Scientific Notation

A value x = 31400.0 is given. Print it in scientific notation using %e:

3.140000e+04

The %e conversion uses six mantissa digits and a two-digit exponent.

Expected Output:

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

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.