โ Back to Functions
Question 401
Maximum of Three Numbers
Maximum of Three Numbers
Write a functionint maxOfThree(int a, int b, int c)that returns the largest of the three integers. Call it withmaxOfThree(3, 9, 5)and print the result: 9
Expected Output:
9
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.