CJCoding With Joseph

Print Double Default Precision

A value x = 3.5 is given. Print it with the plain %f conversion, which defaults to six digits after the decimal point:

3.500000

Do not add a precision — use %f as-is.

Expected Output:

3.500000
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.