โ Back to Functions
Question 393
Average of Three Numbers
Average of Three Numbers
Write a functiondouble average(int a, int b, int c)that returns the average of the three integers as adouble. Call it withaverage(2, 3, 6)and print the result with exactly 2 decimal places: 3.67 Divide the sum by3.0(not3) so the result is adouble, and use<iomanip>fixedandsetprecision(2).
Expected Output:
3.67
Topics:
Functions
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.