CJCoding With Joseph

Average of 1 to 10

Use a loop to sum the numbers 1 to 10, then print their average with exactly 2 decimal places. The exact output is:

5.50

Use <iomanip> with fixed and setprecision(2), and divide by 10.0 so the result is a double.

Expected Output:

5.50
Topics:
Loops
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.