โ Back to Printing
Question 191
Average of Three Integers
Average of Three Integers
Three integersa = 3,b = 4,c = 6are given. Print their average to 2 decimal places: 4.33 Divide the sum by3.0(not3) 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.