CJCoding With Joseph

Maximum of Three Numbers

Write a function int maxOfThree(int a, int b, int c) that returns the largest of the three integers. Call it with maxOfThree(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.