CJCoding With Joseph

Average of Three Integers

Three integers a = 3, b = 4, c = 6 are given. Print their average to 2 decimal places:

4.33

Divide the sum by 3.0 (not 3) so the division is floating point, then print with %.2f.

Expected Output:

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